-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformating.html
More file actions
35 lines (32 loc) · 946 Bytes
/
formating.html
File metadata and controls
35 lines (32 loc) · 946 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
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1 style="text-align: center;
background-color: antiquewhite;">this is the heading</h1>
<p>this is the <b>paragraph</b></p>
<p>h<sub>2</sub>o</p>
<p>e=mc<sup>2</sup></p>
<p>this is <b>important</b></p><hr>
<p>thsi is <i>important</i></p>
<p>thsi is <strong>important </strong></p>
<p>thsi is <em>important</em></p><hr>
<p>this is <small>important</small></p>
<pre>this is the ,<mark>paragraph</mark></pre>
<pre>there is<mark> <del>nothing</del></mark>
you can <mark><ins>do</ins></mark></pre>
<ul>
<li>apple </li>
<li>pear</li>
<li>mango</li>
<li>grape</li>
</ul>
<hr>
<a href="http://google.com">GOOGLE</a><HR></HR>
<img src="#" alt="DEMON SLAYER">
</body>
</html>