-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path13-Entities & Symbols.html
More file actions
48 lines (41 loc) · 1.08 KB
/
13-Entities & Symbols.html
File metadata and controls
48 lines (41 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>13 - Entities & Symbols</title>
</head>
<body>
<!-- Example of why entities are needed -->
<!-- <p>10 < 20</p> This will break HTML -->
<p>10 < 20</p>
<!-- Basic Reserved Characters -->
<p><HTML></p>
<p>& This is an ampersand</p>
<!-- Space Entity -->
<p>Hello World</p>
<p>Hello World</p>
<!-- Currency Symbols -->
<p>50 $</p>
<p>50 £</p>
<p>50 €</p>
<p>50 ¥</p>
<!-- Mathematical Symbols -->
<p>10 + 5</p>
<p>10 − 5</p>
<p>10 × 5</p>
<p>10 ÷ 5</p>
<p>10 = 5</p>
<p>10 ≠ 5</p>
<!-- Arrows & Shapes -->
<p>← Left Arrow</p>
<p>→ Right Arrow</p>
<p>♥ Heart</p>
<p>© Copyright</p>
<p>® Registered</p>
<!-- Emojis -->
<p>😀 Smile</p>
<p>🔥 Fire</p>
<p>👍 Thumbs Up</p>
</body>
</html>