-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathentities.html
More file actions
20 lines (20 loc) · 689 Bytes
/
entities.html
File metadata and controls
20 lines (20 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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>Learning Entities</title>
</head>
<body>
<div class="container">
<!--Adding custom spaces coz browser chops them off-->
<p>This line has many spaces</p>
</div>
<div class="container">
<p>paragraph is written like this <p ></p>
<p>pound is written like this £</p>
<p>Copyright is written like this ©</p>
<p>Registered is written like this ®</p>
</div>
</body>
</html>