-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.html
More file actions
295 lines (243 loc) · 11.1 KB
/
basic.html
File metadata and controls
295 lines (243 loc) · 11.1 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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body style="background-color: teal;">
<header style="text-align: center;"><!-- Basic HTML Header Start-->
<h1><b><i><u>Basic HTML</u></i></b></h1>
<hr>
</header><!--Basic HTML Header End-->
<div><!--Home Page Button-->
<a href="index.html">
<h2 style="height: 50px; width: 100%; text-align: center; color: whitesmoke; background-color:#303841 ; border: 4px solid #be3144;">
<b>Return To Home Page</b>
</h2>
</a>
</div><!--Home Page Button-->
<section><!--Basic HTML Section start-->
<div id="heading"><!--Headings Section Start-->
<h2>We are Headings</h2>
<h4>Syntax:</h4>
<code>
<h1>I'm h1 heading</h1><br>
<h2>I'm h2 heading</h2><br>
<h3>I'm h3 heading</h3><br>
<h4>I'm h4 heading</h4><br>
<h5>I'm h5 heading</h5><br>
<h6>I'm h6 heading</h6><br>
</code>
<div id="output" style="margin-left: 600px; margin-top: -160px;">
<h4>Output:</h4>
<h1>I'm h1 heading</h1>
<h2>I'm h2 heading</h2>
<h3>I'm h3 heading</h3>
<h4>I'm h4 heading</h4>
<h5>I'm h5 heading</h5>
<h6>I'm h6 heading</h6>
</div>
</div><!--Headings Section End-->
<hr>
<div><!--Paragraph Tag Start-->
<h2>I'm Paragraph</h2>
<h4>Syntax:</h4>
<code>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati quasi vero perspiciatis.
Quaerat dolorum quibusdam quas unde quis, perspiciatis sed neque quia,
aliquid nesciunt consequatur temporibus omnis odio et ullam?<br>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati quasi vero perspiciatis.
Quaerat dolorum quibusdam quas unde quis, perspiciatis sed neque quia,
aliquid nesciunt consequatur temporibus omnis odio et ullam?Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati quasi vero perspiciatis.
Quaerat dolorum quibusdam quas unde quis, perspiciatis sed neque quia,
aliquid nesciunt consequatur temporibus omnis odio et ullam?
</p>
</code><br>
<h4>Output:</h4>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati quasi vero perspiciatis.
Quaerat dolorum quibusdam quas unde quis, perspiciatis sed neque quia,
aliquid nesciunt consequatur temporibus omnis odio et ullam?<br>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati quasi vero perspiciatis.
Quaerat dolorum quibusdam quas unde quis, perspiciatis sed neque quia,
aliquid nesciunt consequatur temporibus omnis odio et ullam?Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati quasi vero perspiciatis.
Quaerat dolorum quibusdam quas unde quis, perspiciatis sed neque quia,
aliquid nesciunt consequatur temporibus omnis odio et ullam?
</p>
</div><!--Paragraph Tag End-->
<hr>
<div><!--Formatting Tags Start-->
<h2>We Are Formatting Tags</h2><br>
<h4>Syntax:</h4>
<code>
<b>I'm Bold Tag<b><br>
<strong>I'm Strong Tag<strong><br>
<i>I'm italic Tag<i><br>
<em>I'm em Tag<em><br>
<u>I'm underline Tag<u><br>
<ins>I'm ins Tag<ins><br>
<del>I'm del Tag<del><br>
<s>I'm s Tag<s><br>
</code>
<div style="margin-left: 600px; margin-top: -190px;">
<h4>Output:</h4>
<b>I'm Bold Tag</b><br>
<strong>I'm Strong Tag</strong><br>
<i>I'm italic Tag</i><br>
<em>I'm em Tag</em><br>
<u>I'm underline Tag</u><br>
<ins>I'm ins Tag</ins><br>
<del>I'm del Tag</del><br>
<s>I'm s Tag</s><br>
</div>
</div><!--Formatting Tags End-->
<hr>
<div><!--List Section Start-->
<h2>We Are List Brothers.</h2><br>
<h4>I'm Ordered List</h4>
<p>I like everything in order.</p>
<h4>Syntax:</h4>
<code>
<ol><br><!--ordered list Start-->
<li type="a">Small alphabet</li><br>
<li type="A">Capital alphabet</li><br>
<li type="i">Small Roman Number</li><br>
<li type="I">Capital Roman Number</li><br>
<li type="1">Number</li><br>
<ol><!--ordered list End-->
</code>
<h4>I'm Unordered List</h4>
<p>I like everything in unorder.</p>
<h4>Syntax:</h4>
<code>
<ul><br><!--Unordered list start-->
<li type="disc">Bullet (default)</li><br>
<li type="circle">Circle</li><br>
<li type="square">Square</li><br>
<li type="none">None type</li><br>
<ul><!--Unordered list end-->
</code>
<!--Nested list start-->
<h4>Nested List</h4>
<h4>Syntax:</h4>
<code>
<ul><br><!--Unordered list start-->
<li>BA</li><br>
<li>BCA</li><br>
<li>B.Tech</li><br>
<ol><br><!--ordered list Start-->
<li>CSE</li><br>
<li>ME</li><br>
<li>EE</li><br>
<li>ECE</li><br>
<li>CE</li><br>
</ol><!--ordered list End-->
<br>
<li>BSc</li><br>
</ul><!--Unordered list end-->
<br><br>
<!--Nested list end-->
</code>
<div style="margin-left: 600px; margin-top: -770px;">
<h4>Output:</h4>
<ol><br><!--ordered list start-->
<li type="a">Small alphabet</li>
<li type="A">Capital alphabet</li>
<li type="i">Small Roman Number</li>
<li type="I">Capital Roman Number</li>
<li type="1">Number</li>
</ol><!--ordered list end-->
<br><br><br><br><h4>Output:</h4>
<ul><!--Unordered list start-->
<li type="disc">Bullet (default)</li>
<li type="circle">Circle</li>
<li type="square">Square</li>
<li type="none">None type</li>
</ul><!--Unordered list end-->
<br><br><br><h4>Output:</h4>
<!--Nested list start-->
<ul><!--Unordered list start-->
<li>BA</li>
<li>BCA</li>
<li>B.Tech</li>
<ol><!--ordered list Start-->
<li>CSE</li>
<li>ME</li>
<li>EE</li>
<li>ECE</li>
<li>CE</li>
</ol><!--ordered list End-->
<li>BSc</li>
</ul><!--Unordered list end-->
<!--Nested list end-->
<br>
</div>
</div><!--List Section End-->
<br><br>
<hr>
<div><!--Table Tags Start-->
<h2>I'm Table</h2>
<h4>Syntax:</h4>
<code>
<table><br>
<tr><br>
<th>Name</th><br>
<th>Email Id</th><br>
<th colspan="2">Mob No.</th><br>
</tr><br>
<tr><br>
<td>Aman</td><br>
<td>abc@email.com</td><br>
<td rowspan="2">+91</td><br>
<td>3256987425</td><br>
</tr><br>
<tr><br>
<td>Simran</td><br>
<td>email@mail.com</td><br>
<td>9554789632</td><br>
</tr><br>
<tr><br>
<td>James</td><br>
<td>gmail.com</td><br>
<td>+32</td><br>
<td>1249836579</td><br>
</tr><br>
</table><hr>
</code>
<div style="margin-left: 600px; margin-top: -470px;">
<h4>Output:</h4>
<table border="1px" text-align="center">
<tr>
<th>Name</th>
<th>Email Id</th>
<th colspan="2">Mob No.</th>
</tr>
<tr>
<td>Aman</td>
<td>abc@email.com</td>
<td rowspan="2">+91</td>
<td>3256987425</td>
</tr>
<td>Simran</td>
<td>email@mail.com</td>
<td>9554789632</td>
</tr>
<tr>
<td>James</td>
<td>gmail.com</td>
<td>+32</td>
<td>1249836579</td>
</tr>
</table>
</div>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</div><!--Table Tags End-->
</section><!--Basic HTML Section End-->
<footer>
<p style="height: 50px; width: 100%; text-align: center; color: whitesmoke; background-color:#303841 ; border-top: 4px solid #be3144;"><small>Copyright©2020.</small><br>
Created By <b>Piyush Gupta</b>
</p>
</footer>
</body>
</html>