-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
300 lines (258 loc) · 15.2 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
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="manifest" href="/site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--SCRIPTS-->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="./js/index.js"></script>
<title>Home Slice Pizza</title>
<link rel="icon" href="./images/favicon.ico" type="image/x-icon">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<!-- Bootstrap core CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.1/css/mdb.min.css" rel="stylesheet">
<!--CUSTOM CSS-->
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="main">
<!---->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top scrolling-navbar" id="navbar">
<div class="container">
<a class="navbar-brand" href="#">
</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent-7">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#home" style="color: #A50;"><strong>Home</strong>
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about"style="color: #A50;"><strong>About Us</strong></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact"style="color: #A50;"><strong>Contact</strong></a>
</li>
</ul>
<ul class="navbar-nav sm-icons mr-0">
<li class="nav-item"><a class="nav-link" href="#" style="color: #A50;"><i class="fab fa-facebook-f"></i></a></li>
<li class="nav-item"><a class="nav-link" href="#" style="color: #A50;"><i class="fab fa-instagram"></i></a></li>
<li class="nav-item"><a class="nav-link" href="#" style="color: #A50;"><i class="fab fa-twitter"></i></a></li>
<li class="nav-tem"><a class="nav-link" href="#"style="color: #A50;"><i class="fa fa-mobile" aria-hidden="true">+254 743 068 355</i></a></li>
</ul>
<a href="#order" class="btn btn-light btn-rounded pOrder" style="color: #A50;">PLACE YOUR ORDER</a>
</div>
</div>
</nav>
<!---->
<!--HOME-->
<div class="home" id="home">
<!--
<div class="siteLogo">
<img src="./images/logos/logo1.png" alt="LOGO" id="siteLogo">
</div>
-->
<div class="bg">
</div>
</div>
<!--ABOUT-->
<div class="container-fluid about" id="about">
<!--
<h1>ABOUT US</h1>
-->
<img src="./images/logos/logo1.png" alt="logo">
<div class="container">
<div class="row">
<div class="col-md">
<p>Whichever way you slice it, Home Slice Pizza is an industry leader in the quick service pizza game.
</p>
<p> Serving hot oven-fresh pizza with its signature all-natural tomato sauce and using only the freshest ingredients, Home Slice Pizza has established itself at the top of the industry and is easily one of the first choices in quick service pizza across the globe.
</p>
<p>The homemade pizza dough is produced in-house daily and is another reason why the pizza at the Home Slice Pizza always tastes better. The Twisty Bread,
</p>
<p>The signature toppings and the delicious Double Meal are additional value-for-money options that keep our satisfied customers coming back time after time. These are the meals that have made us Home Slice!
</p>
<p>Home Slice Pizza is the obvious and perfect option to please crowds of all ages.
</p>
</div>
<div class="col-md">
<img src="./images/background/card/abt.png" style="height: 100%; width: 100%;" alt="about-us">
</div>
</div>
</div>
</div>
<!--
<div class="container-fluid menuContainer" id="menu">
<div class="container menu">
<h1>MENU</h1>
<div class="row" style="align-content: center;">
<div class="card">
<img src="./images/background/card/card5.png" class="card-img-top" alt="...">
<div class="card-body" style="background-image: url('./images/background/bg/wood.jpg'); background-repeat: no-repeat; width: 100%;">
<h5 class="card-title" style="font-weight: bold; text-align: center;">HOME SLICE DELUXE PIZZAS</h5>
<ul class="list-group list-group-flush" style="background-color: transparent;">
<li class="list-group-item"style="background-color: transparent;">BBQ Steak >> marinated BBQ steak</li>
<li class="list-group-item"style="background-color: transparent;">Chicken Tikka >> marinated tikka chicken</li>
<li class="list-group-item"style="background-color: transparent;">Chicken Hawaiian >> succulent BBQ chicken</li>
<li class="list-group-item"style="background-color: transparent;">Beef Pepperoni Plus >> double beef pepperoni</li>
<li class="list-group-item" style="background-color: transparent;">Peri Peri Chicken >> spicy peri-peri chicken</li>
</ul>
</div>
</div>
</div>
</div>
</div>
-->
<!--ORDER DETAILS-->
<div class="container-fluid orderContainer" id="order">
<div class="container order" >
<h1>PLACE YOUR ORDER</h1>
<div class="row">
<div class="main col-md-8 offset-2 formContainer" style="background-image: url('./images/background/card/card5.png');">
<div class="placeOrder">
<form id="form1" class="form" name="form1" action="">
<legend>Place your order here:
</legend>
<label for="pizza">Pizza Variety</label>
<select id="pizza" name="pizza" required>
<option disabled selected>Select Pizza</option>
<option value="veggie">BBQ Steak</option>
<option value="periperi">Chicken Tikka</option>
<option value="mushroom">Beef Pepperoni Plus</option>
<option value="hawaiian">Chicken Hawaiian</option>
<option value="pig">Peri Peri Chicken</option>
</select>
<label for="size">Size</label>
<select id="size" name="size">
<option disabled selected>Size</option>
<option value="large">LARGE --- Ksh.1,200</option>
<option value="medium">MEDIUM --- Ksh.1,000</option>
<option value="small">SMALL --- Ksh.650</option>
</select>
<label for="crust">Crust</label>
<select id="crust" name="crust">
<option disabled selected>Crust</option>
<option value="crispy">Crispy --- Ksh. 100</option>
<option value="stuffed">Stuffed Cheese --- Ksh.200</option>
<option value="gluten">Glutten free --- Ksh.150</option>
</select>
<label for="toppings">Depending on Pizza size: Select extra toppings</label><br>
<p>Small: Ksh.50 | Medium: Ksh.100 | Large: Ksh. 150</p>
<div class="checkbox">
<input type="checkbox" value="mushroom" name="toppings" id="mushroom">
<label for="mushroom">Mushroom</label>
</div>
<div class="checkbox">
<input type="checkbox" value="bacon" name="toppings" id="bacon">
<label for="bacon">Bacon</label>
</div>
<div class="checkbox">
<input type="checkbox" value="sausage" name="toppings" id="sausage">
<label for="Sausage">Sausages</label>
</div>
<div class="checkbox">
<input type="checkbox" value="cheese" name="toppings" id="cheese">
<label for="cheese">Extra Cheese</label>
</div><br>
<!-- <span class="button" id="add-pizza">Another pizza</span> -->
<input type="submit" value="CONFIRM ORDER" class="btnContinue" id="continue">
<div class="output"></div>
</form>
</div>
<div class="confirmOrder" id="confirmOrder">
<h2>Confirm your order:</h2>
<table class="confirm-order">
<thead class="thead">
<tr>
<th><strong>NAME</strong></th>
<th><strong>SIZE</strong></th>
<th><strong>CRUST</strong></th>
<th><strong>TOPPINGS</strong></th>
<th><strong>TOTAL</strong></th>
</tr>
</thead>
<tbody class="current-order">
<tr>
<td id="name"></td>
<td id="size"></td>
<td id="crust"></td>
<td id="toppings"></td>
<td id="total"></td>
</tr>
</tbody>
</table>
<div class="table-buttons">
<input type="button" value="GET DELIVERY" class="button" id="delivery">
<span class="button" id="takeOut">TAKE OUT</span>
<br>
<input type="submit" value="ADD" class="button" id="add">
</div>
</div>
<div class="getDelivery">
<form id="form2" class="form" name="form2">
<legend>Delivery @ Ksh. 100
</legend>
<label for="pName">Name</label>
<input type="text" id="pName" placeholder="Enter Your name...">
<div class="dad">
<label for="telephone">Telephone Number</label>
<input type="tel" id="phone-number" placeholder="07** ... ...">
</div>
<div class="dad">
<label for="address">Address</label>
<input type="text" id="location" placeholder=" eg. KM-Imara Daima-Msa RD">
</div>
<input type="submit" value="CHECKOUT" class="button" id="checkout">
</form>
</div>
</div>
</div>
</div>
</div>
<!--CONTACT-->
<div class="container-fluid contact" id="contact">
<h1 class="text-center">CONTACT US</h1>
<div class="main col-md-8 offset-2 formContainer">
<form class="contactForm" id="contactform" name="form3" action="">
<div class="row">
<div class="col-md-6">
<div class="md-form mb-0">
<input type="text" name="name" class="form-control" id="nam" required placeholder = "Name....">
</div>
</div>
<div class="col-md-6">
<div class="md-form mb-0">
<input type="text" name="email" class="form-control" id="em" required placeholder = "Email....">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="md-form mb-0">
<textarea class="form-control md-textarea" rows="4" id="comment" required placeholder = "Your message here...."></textarea>
</div>
</div>
</div>
<div class="text-center text col-md-12">
<button class="btn btn-light btn-rounded btnContact" type="submit">SEND</button>
</div>
</form>
</div>
</div>
<!--footer-->
<div class="footer">
<h1>Home Slice Pizza | Copyright ©2022 | Atieno Obwanda </h1>
</div>
</div>
</body>
</html>