-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (76 loc) · 2.05 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML Tags</title>
</head>
<body style="display: flex; align-items: center; flex-direction: column">
<!-- ^ This is styling used in css. -->
<!-- This are Headings -->
<h1>This is Heading 1(h1)</h1>
<h2>This is Heading 2(h2)</h2>
<h3>This is Heading 3(h3)</h3>
<h4>This is Heading 4(h4)</h4>
<h5>This is Heading 5(h5)</h5>
<h6>This is Heading 6(h6)</h6>
<!-- This is a Paragraph -->
<!-- I have used bold, italic, underline, breakline tags also. -->
<p>
This is Paragraph 1.(Normal) <br />
<b>This is Paragraph 2.(Bold)</b><br />
<i>This is Paragraph 3.(Italic)</i><br />
<u>This is Paragraph 4.(Underline)</u>
</p>
<!-- This are Lists -->
<!-- Unordered List -->
<ul>
<li>Apple</li>
<li>Banana</li>
<li>Citrus</li>
</ul>
<!-- Ordered List -->
<ol>
<li>First Element</li>
<li>Second Element</li>
<li>Third Element</li>
</ol>
<!-- This is Table -->
<table border>
<tr>
<th>Roll No.</th>
<th>Name</th>
<th>Marks(Max 100)</th>
</tr>
<tr>
<td>1</td>
<td>Anand Happy</td>
<td>91.82</td>
</tr>
<tr>
<td>2</td>
<td>Bharat India</td>
<td>82.73</td>
</tr>
<tr>
<td>3</td>
<td>Chaval Rice</td>
<td>73.64</td>
</tr>
</table>
<br />
<!-- This is Form -->
<!-- Here many attributes are used, You can learn about them on MDN site. -->
<form action="">
<label for="">Name:</label>
<input type="text" /><br /><br />
<label for="">Email:</label>
<input type="email" /><br /><br />
<input type="submit" />
</form>
<br />
<!-- This is an Anchor Tag -->
<!-- Here you can learn more about Attributes -->
<a href="https://developer.mozilla.org/en-US/">MDN Docs</a>
</body>
</html>