-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractical-1.html
58 lines (43 loc) · 1016 Bytes
/
practical-1.html
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
58
<!DOCTYPE html>
<html>
<head>
<title>Basic Formatting Tags</title>
</head>
<body>
<!-- Font Tag -->
<font face="Arial" size="5" color="blue">Font Tag Example</font><br>
<!-- BR Tag -->
Text before BR tag<br>
Text after BR tag
<!-- B Tag -->
<b>Bold Text</b><br>
<!-- I Tag -->
<i>Italic Text</i><br>
<!-- U Tag -->
<u>Underlined Text</u><br>
<!-- P Tag -->
<p>Paragraph Tag Example</p>
<!-- HR Tag -->
<hr>
<!-- SUB Tag -->
H<sub>2</sub>0 (Water)<br>
<!-- SUP Tag -->
2<sup>3</sup> (2 to the power of 3)<br>
<!-- Marquee Tag -->
<marquee>Marquee Tag Example</marquee>
<!-- Heading Tags -->
<h1>H1 Heading</h1>
<h2>H2 Heading</h2>
<h3>H3 Heading</h3>
<h4>H4 Heading</h4>
<h5>H5 Heading</h5>
<h6>H6 Heading</h6>
<!-- Center Tag (Deprecated) -->
<center>Centered Text</center>
<!-- Align Attribute (Deprecated) -->
<p align="center">Centered Paragraph</p>
<p align="left">Left-Aligned Paragraph</p>
<p align="right">Right-Aligned Paragraph</p>
<p align="justify">Justified Paragraph</p>
</body>
</html>