-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
258 lines (237 loc) · 7 KB
/
index.html
File metadata and controls
258 lines (237 loc) · 7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Practicing HTML" />
<meta name="keywords" content="HTML Practice, HTML beginner Guide" />
<title>Practice Website</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<a href="blog.html" tagret="_blank">Go to Blog</a>
<!-- Headings -->
<h1>Heading One</h1>
<h2>Heading Two</h2>
<h3>Heading Three</h3>
<h4>Heading Four</h4>
<h5>Heading Five</h5>
<h6>Heading Six</h6>
<!-- Paragrapgh-->
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolorem fuga,
nihil cum sunt, unde eaque totam, tempore est consequatur officiis
corrupti error! Doloribus aspernatur nemo ipsam facere consequatur amet
nobis cumque? Eos atque nihil aut neque temporibus, officia laborum
quaerat unde minima sunt, totam non doloribus aperiam magni consectetur
similique illo optio deleniti quod aspernatur enim inventore possimus
architecto nemo. Ipsam rerum eius reiciendis mollitia veritatis laudantium
eaque iure atque nobis, ipsa vitae in sint, iusto sit doloremque possimus?
Vel vitae debitis expedita reprehenderit ducimus, labore illum temporibus
quaerat dolor accusamus, saepe doloremque minima dolore voluptas officiis
consectetur eum quod.
</p>
<!-- Image -->
<img
src="images/Samuel Obazee Profile Picture.png"
alt="Picture of Samuel Obazee"
/>
<!-- Listing -->
<h2>Categories</h2>
<ul>
<li>Category 1</li>
<li>Category 2</li>
<li>Category 3</li>
<li>Category 4</li>
<li>Category 5</li>
</ul>
<ol>
<li>Category 1</li>
<li>Category 2</li>
<li>Category 3</li>
<li>Category 4</li>
<li>Category 5</li>
</ol>
<h2>Categories</h2>
<ul>
<li>Category One</li>
<li>Category Two</li>
<li>Category Three</li>
<li>Category Four</li>
</ul>
<ol>
<li>Category One</li>
<li>Category Two</li>
<li>Category Three</li>
<li>Category Four</li>
</ol>
<!--Table-->
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Samuel</td>
<td>Reachsamthewebguy@gmail.com</td>
<td>24</td>
</tr>
<tr>
<td>Samuel</td>
<td>Reachsamthewebguy@gmail.com</td>
<td>24</td>
</tr>
<tr>
<td>Samuel</td>
<td>Reachsamthewebguy@gmail.com</td>
<td>24</td>
</tr>
</tbody>
</table>
<!-- Table -->
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Twitter Handle</th>
</tr>
</thead>
<tbody>
<tr>
<td>Obazee Samuel</td>
<td>reachsamthewebguy@gmail.com</td>
<td>@samthewebguy</td>
</tr>
<tr>
<td>Obazee Felix</td>
<td>obazeefelixadetayo@gmail.com</td>
<td>@obazeef123</td>
</tr>
<tr>
<td>Dasaolu Daniel</td>
<td>archyscript@gmail.com</td>
<td>@archyscript</td>
</tr>
</tbody>
</table>
<br />
<!-- Form -->
<form action="process.php" method="POST">
<div>
<label for="first-name">First Name</label>
<input type="text" name="first-name" id="first-name" />
</div>
<br />
<div>
<label for="last-name">Last Name</label>
<input type="text" name="last-name" id="last-name" />
</div>
<br />
<div>
<label for="email">Email Address</label>
<input
type="email"
name="email"
placeholder="Enter your email"
id="email"
/>
</div>
<br />
<div>
<label for="form-message">Message</label>
<textarea name="message" id="form-message"></textarea>
</div>
<br />
<div>
<label for="form-gender">Gender</label>
<select for="gender" id="form-gender">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div>
<br />
<div>
<label for="age">Age</label>
<input type="number" name="age" id="age" />
</div>
<br />
<div>
<label for="birthday">Birthday</label>
<input type="date" name="birthday" id="birthday" />
</div>
<br />
<div>
<input type="submit" name="submit" value="submit" />
</div>
</form>
<br />
<!-- Form -->
<form action="process.php" method="POST">
<div>
<label for="first-name">First Name</label>
<input type="text" name="first-name" id="first-name" />
</div>
<br />
<div>
<label for="last-name">Last Name</label>
<input type="text" name="last-name" id="last-name" />
</div>
<br />
<div>
<label for="email">Email</label>
<input type="email" name="email" placeholder="email" id="email" />
</div>
<br />
<div>
<label for="form-message">Message</label>
<textarea name="message" id="form-message"></textarea>
</div>
<br />
<div>
<label for="form-gender">Gender</label>
<select name="gender" id="form-gender">
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div>
<br />
<div>
<label for="">Age</label>
<input type="number" name="age" value="18" />
</div>
<br />
<div>
<label for="birthday">Birthday</label>
<input type="date" name="birthday" id="birthday" />
</div>
<br />
<div>
<input type="submit" name="submit" value="Submit" />
</div>
</form>
<!-- Block Quote -->
<blockquote cite="https://google.com">
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Aliquid quod
similique impedit repellendus debitis provident quaerat sapiente nihil
id, ipsam magni asperiores eos numquam? Tenetur ea consectetur, eaque
cumque commodi optio autem provident laudantium reiciendis adipisci! Aut
suscipit corrupti ducimus quia saepe deserunt minus voluptas, ut, quos
ullam velit dolorum.
</p>
</blockquote>
<br />
<!-- Abrreviation -->
<p>
The <abbr title="World Health Organization">WHO</abbr> release information
on how to stay healthy yesterday
</p>
</body>
</html>