-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="hungrybirds.css" />
<title>Hungry birds</title>
</head>
<body>
<h1>Hungry birds</h1>
<main>
<div>
<input type="radio" name="bird-1" id="bird-1" />
<label for="bird-1" class="nest nest-1"></label>
</div>
<div>
<input type="radio" name="bird-2" id="bird-2" />
<label for="bird-2" class="nest nest-2"></label>
</div>
<div>
<input type="radio" name="bird-3" id="bird-3" />
<label for="bird-3" class="nest nest-3"></label>
</div>
<div>
<input type="radio" name="bird-4" id="bird-4" />
<label for="bird-4" class="nest nest-4"></label>
</div>
<div>
<input type="radio" name="bird-5" id="bird-5" />
<label for="bird-5" class="nest nest-5"></label>
</div>
<div>
<input type="radio" name="bird-6" id="bird-6" />
<label for="bird-6" class="nest nest-6"></label>
</div>
<div>
<input type="radio" name="bird-7" id="bird-7" />
<label for="bird-7" class="nest nest-7"></label>
</div>
<div>
<input type="radio" name="bird-8" id="bird-8" />
<label for="bird-8" class="nest nest-8"></label>
</div>
<div>
<input type="radio" name="bird-9" id="bird-9" />
<label for="bird-9" class="nest nest-9"></label>
</div>
</main>
</body>
</html>