-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut8.html
32 lines (28 loc) · 1.02 KB
/
tut8.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> HTML Enities</title>
<!-- An entity is a piece of text (“string”) that begins with an
‘&’ and ends with a ‘;’. -->
</head>
<body>
<div class="container">
<p> this is paragragh</p>
</div>
<div class="container">
<p> this is also paragragh</p>
<!-- (non-breaking space) used to give space avoid using this
in your website -->
<p> paragragh is written like this <p></p>
<!-- you cannot <p> write directly therefore use <p> -->
<p>Pound is written like this £ </p>
<p>Copyright is written like this © </p>
<p>Another character is ⇛ </p>
<p>Another character is ¼ </p>
<p>Empty character is written like this </p>
</div>
</body>
</html>