-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexp3.html
More file actions
34 lines (27 loc) · 866 Bytes
/
exp3.html
File metadata and controls
34 lines (27 loc) · 866 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
<!-- example on formatting tags-->
<!DOCTYPE html>
<html lang="en">
<head> </head>
<body>
<strong>html</strong> <!--for thickness-->
<b> html</b> <br> <!--for bold-->
<em>html</em> <!--italic formate-->
<i>html</i> <!--italic formate-->
<br>
<ins> html</ins> <!--insert for underline-->
<u>html</u> <br> <!--underline purpose-->
<del>html</del> <!--delete striking-->
<s> html</s><br> <!--delete striking-->
H<sub>2</sub>SO<sub>4</sub> <!-- sub script-->
<br>
(a+b)<sup>2</sup>=a<sup>2</sup>+b<sup>2</sup>+2ab <!-- super script-->
<br>
<mark>html</html><br>
<span>html</span><br>
<pre>
Red apple
Yello Mango html
Black
</pre><!--pre formated text used for whatever type as it is print-->
</body>
</html>