forked from byquangthanh/valentine.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfood.html
75 lines (73 loc) · 2.53 KB
/
food.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food Selection</title>
<style>
body {
text-align: center;
margin-top: 30px;
font-family: 'Courier';
background-color:#FFF5E4;
color: #FF9494;
}
#foodquestion {
font-size: 50px;
margin-bottom: 30px;
}
.food-item {
display: inline-block;
margin: 10px;
vertical-align: top;
color: #FF9494;
}
.food-item img {
width: 220px;
height: auto;
padding: 10px;
}
.food-item label {
display: block;
}
</style>
</head>
<body>
<div id="foodquestion"><b><u>What food would you like to eat?</u></b></div>
<div class="food-selection">
<div class="food-item">
<img src="food/burgers.jpeg" alt="Burgers, fries and fried chicken">
<label><input type="checkbox" name="food" value="Burgers, fries and fried chicken"> burgers and fried chicken</label>
</div>
<div class="food-item">
<img src="food/dog.jpeg" alt="dog">
<label><input type="checkbox" name="food" value="hotdog"> hotdog</label>
</div>
<div class="food-item">
<img src="food/koreanfood.jpeg" alt="koreanfood">
<label><input type="checkbox" name="food" value="Korean food"> korean food</label>
</div>
<div class="food-item">
<img src="food/pasta.jpeg" alt="pasta">
<label><input type="checkbox" name="food" value="pasta"> pasta</label>
</div>
<div class="food-item">
<img src="food/pizza.jpeg" alt="pizza">
<label><input type="checkbox" name="food" value="pizza"> pizza</label>
</div>
<div class="food-item">
<img src="food/salad.jpeg" alt="salad">
<label><input type="checkbox" name="food" value="salad"> salad</label>
</div>
<div class="food-item">
<img src="food/steak.jpeg" alt="steak">
<label><input type="checkbox" name="food" value="steak"> steak</label>
</div>
<div class="food-item">
<img src="food/sushi.jpeg" alt="sushi">
<label><input type="checkbox" name="food" value="sushi"> sushi</label>
</div>
</div>
<button onclick="location.href='dessert.html'">Continue</button>
</body>
</html>