-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder-pizza.html
246 lines (242 loc) · 12.7 KB
/
order-pizza.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap Exercise</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">Pizza World</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Order Online</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Menu</a>
</li>
<li>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Zip Code" aria-label="Search">
<button class="text-nowrap btn btn-outline-primary" type="submit">Search stores near you!</button>
</form>
</li>
</ul>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-person-fill" viewBox="0 0 16 16">
<path d="M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"/>
</svg>
<a class="nav-link" href="#">Sign Up!</a>
</div>
</nav>
<div class="container">
<!--JUMBOTRON-->
<div class="container-fluid my-5 py-5 px-0" style="background-image: url('img/pizza.png')">
<h1 class="display-7 text-center fw-semibold bg-light bg-opacity-75">Welcome to Pizza World!</h1>
</div>
<!--Nav-Tabs-->
<h2 class=" mt-3 fw-semibold">Build your own pizza!</h2>
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="sizeandcrust-tab" data-bs-toggle="tab" data-bs-target="#sizeandcrust" type="button" role="tab" aria-controls="sizeandcrust" aria-selected="true" href="#"><span class="badge rounded-pill text-bg-secondary">1</span> Size and Crust</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="cheeseandsauce-tab" data-bs-toggle="tab" data-bs-target="#cheeseandsauce" type="button" role="tab" aria-controls="cheeseandsauce" aria-selected="false" href="#"><span class="badge rounded-pill text-bg-secondary">2</span> Cheese and Sauce</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="toppings-tab" data-bs-toggle="tab" data-bs-target="#toppings" type="button" role="tab" aria-controls="toppings" aria-selected="false" href="#"><span class="badge rounded-pill text-bg-secondary">3</span> Toppings</button>
</li>
</ul>
<div class="tab-content">
<!--Size and Crust Tab-->
<div class="tab-pane fade show active" id="sizeandcrust" role="tabpanel" aria-labelledby="sizeandcrust-tab" tabindex="0">
<div class="card">
<h5 class="card-header text-white bg-primary">Choose Size and Crust</h5>
<div class="card-body">
<div class="card">
<h5 class="card-header">Hand Tossed</h5>
<div class="card">
<div class="card-header">
Garlic seasoned crust with a rich, buttery taste.
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<input class="form-check-input me-1" type="radio" name="listGroupRadio" value="" id="firstRadio" checked="">
<label class="form-check-label" for="firstRadio">Small (10")</label>
</li>
<li class="list-group-item">
<input class="form-check-input me-1" type="radio" name="listGroupRadio" value="" id="firstRadio" checked="">
<label class="form-check-label" for="firstRadio">Medium (12")</label>
</li>
</ul>
</div>
</div>
</div>
<div class="card">
<h5 class="card-header">Crispy Thin</h5>
<div class="card-body">
<div class="card">
<div class="card-header">
Thin enough for optimum crispy to crunchy ratio.
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">
<input class="form-check-input me-1" type="radio" name="listGroupRadio" value="" id="firstRadio" checked="">
<label class="form-check-label" for="firstRadio">Medium (12")</label>
</li>
<li class="list-group-item">
<input class="form-check-input me-1" type="radio" name="listGroupRadio" value="" id="firstRadio" checked="">
<label class="form-check-label" for="firstRadio">Large (14")</label>
</li>
</ul>
</div>
</div>
</div>
<div class="card-footer text-body-secondary text-end">
<a href="#" class="btn btn-primary">Next step ></a>
</div>
</div>
</div>
<!--Cheese and Sauce Tab-->
<div class="tab-content">
<div class="tab-pane fade" id="cheeseandsauce" role="tabpanel" aria-labelledby="cheeseandsauce-tab" tabindex="0">
<div class="card">
<h5 class="card-header text-white bg-primary">Choose Cheese and Sauce</h5>
<div class="card-body">
<div class="card">
<h5 class="card-header">Cheese</h5>
<div class="card">
<ul class="list-group list-group-flush">
<li class="dropdown list-group-item">How Much?</li>
</ul>
<button class="btn btn-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">Normal</button>
<ul class="dropdown-menu">
<li><button class="dropdown-item" type="button">Light</button></li>
<li><button class="dropdown-item" type="button">Normal</button></li>
<li><button class="dropdown-item" type="button">Extra</button></li>
<li><button class="dropdown-item" type="button">Double</button></li>
</ul>
</div>
</div>
</div>
<div class="card">
<h5 class="card-header">Sauce</h5>
<div class="card-body">
<div class="card">
<ul class="list-group list-group-flush">
<li class="list-group-item">What Type?</li>
</ul>
<button class="btn btn-outline-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">Tomato</button>
<ul class="dropdown-menu dropdown-menu-end">
<li><button class="dropdown-item" type="button">Tomato</button></li>
<li><button class="dropdown-item" type="button">Marinara</button></li>
<li><button class="dropdown-item" type="button">BBQ</button></li>
<li><button class="dropdown-item" type="button">Alfredo</button></li>
</ul>
<ul class="list-group list-group-flush">
<li class="list-group-item">How Much?</li>
</ul>
<button class="btn btn-outline-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">Normal</button>
<ul class="dropdown-menu dropdown-menu-end">
<li><button class="dropdown-item" type="button">Light</button></li>
<li><button class="dropdown-item" type="button">Normal</button></li>
<li><button class="dropdown-item" type="button">Extra</button></li>
</ul>
</div>
</div>
</div>
<div class="card-footer text-body-secondary text-end">
<a href="#" class="btn btn-primary">< Previous</a>
<a href="#" class="btn btn-primary">Next ></a>
</div>
</div>
</div>
<div
<!--Toppings Tab-->
<div class="tab-content">
<div class="tab-pane fade" id="toppings" role="tabpanel" aria-labelledby="toppings-tab" tabindex="0">
<div class="card">
<h5 class="card-header text-white bg-primary">Choose Toppings</h5>
<div class="card-body">
<div class="card">
<h5 class="card-header">Choose Meats</h5>
<div class="card">
<ul class="list-group list-group-flush">
<li class="list-group-item">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Beef
</label>
</li>
<li class="list-group-item">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Ham
</label>
</li>
<li class="list-group-item">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Philly Steak
</label>
</li>
<li class="list-group-item">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Bacon
</label>
</li>
</ul>
</div>
</div>
</div>
<div class="card">
<h5 class="card-header">Choose Non-Meats</h5>
<div class="card-body">
<div class="card">
<ul class="list-group list-group-flush">
<li class="list-group-item">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Green Peppers
</label>
</li>
<li class="list-group-item">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Mushrooms
</label>
</li>
<li class="list-group-item">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Onions
</label>
</li>
<li class="list-group-item">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Jalapeño Peppers
</label>
</li>
</ul>
</div>
</div>
</div>
<div class="card-footer text-body-secondary text-end">
<a href="#" class="btn btn-primary">Checkout <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-cart-fill" viewBox="0 0 16 16">
<path d="M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 13 12H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-7 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/></svg></a>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>