-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic1.htm
27 lines (26 loc) · 933 Bytes
/
basic1.htm
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
<html>
<head>
<title>second html</title>
</head>
<body style="background-color:darkgray">
<h2 align="center">web programming practical</h2>
<hr>
<pre>
<h5>second last heading</h5>
<h6>heading number 6</h6>
<p>let this be the first and the last paragraph</p>
<b>this is bold line</b>
<i>italic look much better</i>
<u>this is underline</u>
</pre>
<font face="arial">this is in arial</font>
<p>my name is sadiq <br>full name sonalkar</p>
<strong>this is in strong font</strong><br>
<del>this is censored i mean deleted</del><br>
<sub>dont forget subscripted text</sub><br>
<sup>also superscripted text</sup><br>
<em>this is emphasised text</em><br>
<small>this is small text</small><br>
<big>this text is written using big tag</big>
</body>
</html>