-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasicHTMLtags.html
More file actions
57 lines (56 loc) · 1.68 KB
/
basicHTMLtags.html
File metadata and controls
57 lines (56 loc) · 1.68 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<html>
<head>
<title>basic html tags</title>
</head>
<body>
Normal text------> Hello World<br/>
Bold text---------><b> Hello World</b><br/>
Italicized text----><i> Hello World</i><br/>
<u>Hello World</u><br/>
<b>
<u>
<i>
Hello World
</i>
</u>
</b><br/><br/>
italics using em tag -> <em>Hello World</em><br/>
bold using strong tag -> <strong>Hello World</strong>
<h1>Hello World</h1>
<h2>Hello World</h2>
<h3>Hello World</h3>
<h4>Hello World</h4>
<h5>Hello World</h5>
<h6>Hello World</h6>
<br/>
Highlighting Text ---> <mark>Hello World</mark><br/><br/>
Striking through ----> <strike>Hello World</strike><br/>
quoting text ----> <q>Graphic Era</q><br/>
<br/><br/>
simple text -> Hello World<br/>
text using big tag -> <big>Hello World</big><br/>
text using small tag -> <small>Hello World</small><br/>
<br/>
Preformatted Text<br/>
<pre>
*
**
***
****
*****
******
</pre>
<br/><br/>
Font Tag ---->
<br/>
<font>Avada Kedavra</font><br/>
<font size="5">Avada Kedavra</font><br/>
<font face="fantasy">Avada Kedavra</font><br/>
<font color="#808080">Avada Kedavra</font><br/>
<br/><br/>
Subscript ----->
C<sub>6</sub>H<sub>12</sub>O<sub>6</sub><br/>
Superscript --->
(a+b)<sup>2</sup> = a<sup>2</sup> + b<sup>2</sup> + 2ab<br/>
</body>
</html>