forked from byquangthanh/valentine.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdessert.html
54 lines (53 loc) · 1.66 KB
/
dessert.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dessert</title>
<link rel="stylesheet" href="css/dessert.css" />
</head>
<body>
<div id="dessertquestion">Which dessert we eatin cuh</div>
<div class="dessert-selection">
<div class="dessert-item">
<img src="food/boba.jpeg" alt="boba" />
<label
><input type="checkbox" name="dessert" value="boba" /> boba</label
>
</div>
<div class="dessert-item">
<img src="food/churro.jpeg" alt="churro" />
<label
><input type="checkbox" name="dessert" value="churro" /> churro</label
>
</div>
<div class="dessert-item">
<img src="food/che.jpeg" alt="che" />
<label><input type="checkbox" name="dessert" value="che" /> che</label>
</div>
<div class="dessert-item">
<img src="food/mochi.jpeg" alt="mochi" />
<label
><input type="checkbox" name="dessert" value="mochi" /> mochi</label
>
</div>
<div class="dessert-item">
<img src="food/randombun.jpeg" alt="randombun" />
<label
><input type="checkbox" name="dessert" value="randombun" /> random
bun</label
>
</div>
<div class="dessert-item">
<img src="food/taiyaki.jpeg" alt="taiyaki" />
<label
><input type="checkbox" name="dessert" value="taiyaki" />
taiyaki</label
>
</div>
</div>
<button class="button" onclick="location.href='activities.html'">
Continue UWU
</button>
</body>
</html>