forked from byquangthanh/valentine.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdessert.html
80 lines (78 loc) · 2.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dessert</title>
<style>
body {
text-align: center;
margin-top: 30px;
font-family: courier;
background-color: #FFF5E4;
color: #FF9494;
}
#dessertquestion {
font-size: 50px;
margin-bottom: 30px;
font-weight: bold;
}
.dessert-item {
display: inline-table;
margin: 10px;
vertical-align: top;
color: #FF9494;
}
.dessert-item img {
width: 220px;
height: auto;
padding: 10px;
}
.dessert-item label {
display: block;
}
.button {
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
margin: 10px;
font-family: 'courier';
margin-bottom: 20px;
background-color:#FFE3E1;
color: #e67373;
border-radius: 12px;
border: 2px solid #FFE3E1;
}
</style>
</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>