-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformating.html
More file actions
32 lines (29 loc) · 791 Bytes
/
Copy pathformating.html
File metadata and controls
32 lines (29 loc) · 791 Bytes
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formatting</title>
</head>
<body>
<h1>Formatting</h1>
<!-- <h1>Formatting</h1> -->
<!-- <h1>Formatting</h1>
<h1>Formatting</h1> -->
<h2>this is <b>important</b></h2>
<p>this is <b>important</b></p>
<p>this is <strong>important</strong></p>
<p>this is <i>important</i></p>
<p>this is <em>important</em></p>
<ul>
<li>b; strong</li>
<li>i; em</li>
<li>small</li>
<li>sub, sup</li>
<li>del, mark</li>
</ul>
<p>H2O</p>
<p>H<sub>2</sub>O</p>
<h3 style="text-align: center;background-color: aqua;">This tag needs some styling</h3>
</body>
</html>