-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
168 lines (135 loc) · 5.87 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pete's Pizzeria</title>
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script|Mr+Dafoe|Nothing+You+Could+Do|Yellowtail|Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1 id="mainh1">Pete's pizzeria</h1>
<main>
<div class="section-card visible first">
<header>
<h1>Choose your size!</h1>
</header>
<p>
Personal
<input type="radio" name="size" id="Personal size" data-price="6">
</p>
<p>
Medium
<input type="radio" name="size" id="Medium size" data-price="10">
</p>
<p>
Large
<input type="radio" name="size" id="Large size" data-price="14">
</p>
<p>
Extra Large
<input type="radio" name="size" id="Extra large" data-price="16">
</p>
<button class="back">Back</button>
<button class="submit">Next</button>
</div>
<div class="section-card">
<header>
<h1>Nice to meat you!</h1>
<figcaption> The first meat item is complimentary. All additional meat items cost $1 each.</figcaption>
</header>
<p>
Pepperoni
<input type="checkbox" name="meat" id="Pepperoni">
</p>
<p>
Sausage
<input type="checkbox" name="meat" id="Sausage">
</p>
<p>
Canadian Bacon
<input type="checkbox" name="meat" id="Canadian Bacon">
</p>
<p>
Ground Beef
<input type="checkbox" name="meat" id="Ground Beef">
</p>
<p>
Anchovy
<input type="checkbox" name="meat" id="Anchovy">
</p>
<p>
Chicken
<input type="checkbox" name="meat" id="Chicken">
</p>
<button class="back">Back</button>
<button class="submit">Next</button>
</div>
<div class="section-card">
<header>
<h1>How cheesy<br>are you?</h1>
</header>
<p>
Regular
<input type="radio" name="cheese" id="Regular cheese">
</p>
<p>
No cheese
<input type="radio" name="cheese" id="No cheese">
</p>
<p>
Extra Cheese
<input type="radio" name="cheese" id="Extra Cheese" data-price="3">
</p>
<button class="back">
Back
</button>
<button class="submit">
Next
</button>
</div>
<div class="section-card">
<header>
<h1>Everyone bites<br>the crust</h1>
</header>
<p>Plain Crust<input type="radio" name="crust" id="Plain Crust"></p>
<p>Garlic Butter Crust<input type="radio" name="crust" id="Garlic Butter Crust"></p>
<p>Cheese Stuffed Crust<input data-price="3" type="radio" name="crust" id="Cheese Stuffed Crust" ></p>
<p>Spicy Crust<input type="radio" name="crust" id="Spicy Crust"></p>
<p>House Special Crust<input type="radio" name="crust" id="House Special Crust"></p>
<button class="back">Back</button>
<button class="submit">Next</button>
</div>
<div class="section-card">
<header>
<h1>Our pizzas are saucy</h1>
</header>
<p>Marinara sauce<input type="radio" name="sauce" id="Marinara sauce"></p>
<p>White sauce<input type="radio" name="sauce" id="White sauce" ></p>
<p>Barbeque sauce<input type="radio" name="sauce" id="Barbeque sauce" ></p>
<p>No Sauce<input type="radio" name="sauce" id="No Sauce"></p>
<button class="back">Back</button>
<button class="submit">Next</button>
</div>
<div class="section-card last">
<header>
<h1>Always eat your veggies</h1>
The first type of veggie is complimentary. All additional veggie items cost $1 each.
</header>
<p>Tomatoes<input type="checkbox" name="veggies" id="Tomatoes"></p>
<p>Onions<input type="checkbox" name="veggies" id="Onions" ></p>
<p>Olives<input type="checkbox" name="veggies" id="Olives" ></p>
<p>Green Peppers<input type="checkbox" name="veggies" id="Green Peppers"></p>
<p>Mushrooms<input type="checkbox" name="veggies" id="Mushrooms"></p>
<p>Pineapple <input type="checkbox" name="veggies" id="Pineapple"></p>
<p>Spinach <input type="checkbox" name="veggies" id="Spinach"></p>
<p>Jalapeno <input type="checkbox" name="veggies" id="Jalapeno"></p>
<button class="back">Back</button>
<button class="submit">Next</button>
</div>
<div id="tally">
<h1>Your order</h1>
</div>
</main>
<script src="scripts.js"></script>
</body>
</html>