-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
39 lines (37 loc) · 844 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Advanced CSS selectors exercise</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- PLEASE DO NOT CHANGE THE HTML -->
<ul>
<li>First <a href="#">link</a></li>
<li>Second <a href="#">link</a></li>
<li>Third <a href="#">link</a></li>
<li>Fourth <a href="#">link</a></li>
<li>Fifth <a href="#">link</a></li>
<li>Sixth <a href="#">link</a></li>
<li>Seventh <a href="#">link</a></li>
</ul>
<form>
<div>
<input type="text" placeholder="first name">
</div>
<div>
<input type="text" placeholder="last name">
</div>
<div>
<input type="password" placeholder="password">
</div>
<div>
<input type="email" placeholder="email">
</div>
<div>
<input type="submit" value="SEND">
</div>
</form>
</body>
</html>