-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
141 lines (123 loc) · 3.85 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
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
<!DOCTYPE html>
<html>
<head>
<!-- head part of the tag is not shown to the user-->
<title> html page </title>
<meta charset="utf-8">
<meta name="description"
content="this web page tells about the html structure for the beginner level programmersi" />
<meta name="viewpoint" content="width=devic-width initial-scale= 1.0" />
</head>
<body>
<h1> heading 1</h1>
<h2> heading 2</h2>
<h3> heading 3</h3>
<p> this is a paragraph </p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod, aperiam debitis ipsum blanditiis enim sapiente
<br>
perspiciatis dolor sunt, fuga minima labore iste hic beatae expedita similique nostrum, quaerat eveniet.
Consequatur?
</p>
<!--paragraph tag-->
<hr>
<!--horizontal rule tag-->
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod, aperiam debitis ipsum blanditiis enim sapiente
<br>
perspiciatis dolor sunt, fuga minima labore iste hic beatae expedita similique nostrum, quaerat eveniet.
Consequatur?
</p>
<p>
<h3>using tags</h3>
<br>
<b>geekskool</b> <i>is a bootcamp </i> <!-- bold and italic tag-->
<br>
<small>geekskool</small>
<!--small tag makes a text small -->
<br>
<mark>geekskool</mark> <!-- heighlites the text-->
<br>
<del>geekskool</del><!-- used for scratch the text-->
<br>
<ins>geekskool</ins>
<!--underline text-->
<br>
geekskool<sub> rootconfig</sub> <!-- subscript for a text-->
<br>
<sup>rootconfig</sup>geekskool
<!--super script for a text-->
</p>
<div>block 1</div>
<!--division tag block level element it take up the full width-->
<div>block 2</div>
<span>inline 1 </span>
<span>inline 2</span>
<!--inline element tag doesnt start in a newline-->
<!--ordered list type -->
<ol>
<li>coffee</li>
<li>tea</li>
<li>milk</li>
</ol>
<!--unordered list type-->
<ul>
<li>milk</li>
<li>coffee</li>
<li>tea</li>
</ul>
<dl>
<!--definition list contain 2 tages definition title and definition description-->
<dt>tea</dt>
<dd>-hot drink</dd>
<dt>lemon juice</dt>
<dd>- soft drink good for hyderation</dd>
</dl>
<img src="glider.jpg" width="200" height="200" alt="glider image for rootconfig" />
<br>
<a href="https://google.com">Google</a><!-- anchor tag used to create the hyper links for other pagesz-->
<br>
<a href="https://google.com" target="_blank"> new google</a> <!-- this will open the link in the new tab-->
<!--creating a table-->
<table>
<th>
<!--table heading-->
<tr>
<!--table row-->
<th>Heading 0 </th>
<!--table heading-->
<th>Heading 1 </th>
<th>Heading 2 </th>
</tr>
</th>
<tb>
<tr>
<td>data 1</td>
<td>data 2</td>
<td>data 3</td>
</tr>
<tr>
<td>data 4</td>
<td>data 5</td>
<td>data 6</td>
</tr>
<tr>
<td>data 7</td>
<td>data 8</td>
<td>data 9</td>
</tr>
</tb>
</table>
<form>
<label for="username">Username</label><br>
<input type="text" id="username" /><br /><br />
<label for="about"> About you </label><br />
<textarea id="about"></textarea><br /><br />
<label for="country"> Select<br />
<select id="country">
<option value='india'>India</option>
<option value="china">china</option>
<option value="america">america</option>
</select>
</label>
</form>
</body>
</html>