This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic_html_code.html
156 lines (130 loc) · 3.01 KB
/
basic_html_code.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html>
<head>
<title>First Website</title>
</head>
<body>
<br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br>
<ul type="disk">
<li>Dhaka</li>
<li>Bhola</li>
<li>Mymensingh</li>
<ul type="circle">
<li>Mymensingh</li>
<li>Sherpur</li>
<li>Jamalpur</li>
<li>Netrokona</li>
</ul>
<li>Feni</li>
<li>Gazipur</li>
</ul>
<br><br><br><br><br><br><br><br>
<img src="horse.jpg" width="500" height="300" alt="An image of a Horse"> <br><br>
<img src="horse.jpg" width="500px"> <br><br>
<img src="horse.jpg" height="300"> <br><br>
<br><br><br><br><br><br><br><br>
Click to browse <a href="https://www.google.com" target="_blank">Google</a> in a new page.<br>
Click to browse <a href="https://www.google.com" target="_self">Google</a> in self page.<br>
Click to browse <a href="https://www.google.com">Google</a>.<br>
Open <a href="horse.jpg">horse</a> image.
<br><br><br><br><br><br><br><br>
<p align="justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<p align="right" color="red">This is right.</p>
<p align="left">This is default left.</p>
<p align="middle">This is middle.</p>
<p align="center">This is center.</p>
<br><br><br><br><br><br><br><br>
<ul type="square">
<li>Banana</li>
<li>Apple</li>
<li>Mango</li>
<li>Lichi</li>
<li>Orange</li>
<li>Guava</li>
</ul>
<ul type="circle">
<li>Banana</li>
<li>Apple</li>
<li>Mango</li>
<li>Lichi</li>
<li>Orange</li>
<li>Guava</li>
</ul>
<ul type="disk">
<li>Banana</li>
<li>Apple</li>
<li>Mango</li>
<li>Lichi</li>
<li>Orange</li>
<li>Guava</li>
</ul>
<ul>
<li>Banana</li>
<li>Apple</li>
<li>Mango</li>
<li>Lichi</li>
<li>Orange</li>
<li>Guava</li>
</ul>
<br><br><br><br><br><br><br><br>
<ol type="a">
<li>Banana</li>
<li>Apple</li>
<li>Mango</li>
<li>Lichi</li>
<li>Orange</li>
<li>Guava</li>
</ol>
<ol type="A">
<li>Banana</li>
<li>Apple</li>
<li>Mango</li>
<li>Lichi</li>
<li>Orange</li>
<li>Guava</li>
</ol>
<ol type="i">
<li>Banana</li>
<li>Apple</li>
<li>Mango</li>
<li>Lichi</li>
<li>Orange</li>
<li>Guava</li>
</ol>
<ol type="1" start="10">
<li>Banana</li>
<li>Apple</li>
<li>Mango</li>
<li>Lichi</li>
<li>Orange</li>
<li>Guava</li>
</ol>
<ol>
<li>Banana</li>
<li>Apple</li>
<li>Mango</li>
<li>Lichi</li>
<li>Orange</li>
<li>Guava</li>
</ol>
<br><br><br><br><br><br><br><br>
<h1>This is h1 text</h1>
<h2>This is h2 text</h2>
<h3>This is h3 text</h3>
<h4>This is h4 text</h4>
<h5>This is h5 text</h5>
<h6>This is h6 text</h6>
<br><br><br><br><br><br><br><br>
H<sub>2</sub>O <br>
(a + b)<sup>2</sup> = a<sup>2</sup> + 2ab + b<sup>2</sup>
<br><br><br><br><br><br><br><br>
This text is <b>bold</b> <br>
This text is <strong>strong</strong> <br>
This text is <i>italic</i> <br>
This text is <em>emphasized</em> <br>
This text is <u>underlined</u> <br>
This text is<u><b><i> italic and underlined</i></b></u>
<del>This text is deleted.</del>
</body>
</html>