-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (84 loc) · 3.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PIZZA NOVA</title>
<link rel="stylesheet" href="index.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
</head>
<body>
<div class="logo">PIZZA <br> NOVA</div>
<div class="navbar">
<a class="active" href="#home">Home</a>
<a href="#ourpizza">Our Pizza</a>
<a href="#orderonline">Order Online</a>
</div><br><br>
<div class="ourpizza" id="ourpizza">
<h1>Our Pizza</h1>
<p id="ourpizzadesc">Our wood-fired Neapolitan style pizzas are prepared <br> using the freshest ingredients and our house-made dough.</p>
<div class="container-fluid">
<div class="row">
<div class="col-4">
<img src="images/pepperoni.png" alt=""><br>
<strong>Pepperoni</strong>
<p>An ocean of Everyone's Favorite <br> topping … pepperoni.</p>
</div>
<div class="col-4" id="periperi">
<img src="images/peri.png" alt=""><br>
<strong>PeriPeri</strong>
<p>A mountain of pepperoni, Italian sausage, <br> lean bacon, smoked ham, beef <br>Cheddar and Mozzarella <br> cheese on your favorite crust.</p>
</div>
<div class="col-4">
<img src="images/Chickenmushroom.png" alt=""><br>
<strong>Chicken Mushroom</strong>
<p>A mouth-watering blend of spicy picante sauce,<br> grilled fajita chicken, fresh green bell peppers, <br> diced tomatoes, savory onions, black olives,<br> Mozzarella and Cheddar cheese <br> all served on our crispy Thin crust. </p>
</div>
<div class="col-4">
<img src="images/Hawaian.png" alt=""><br>
<strong>Hawaiian</strong>
<p>The perfect combination of sweet,savory flavors <br> loaded on top of a crispy crust. <br> Delicious melty mozzarella cheese <br> locks in layers of salty bacon and <br> juicy pineapple pieces in each slice.</p>
</div>
</div>
</div>
</div>
<br><br>
<div class="orderonline" id="orderonline">
<form id="order">
<strong id="orderonlinetext">Order Online</strong><br>
<input id=name type="text" placeholder="Name"><br><br>
<input id="numorder" type="number" placeholder="No. of Pizzas"><br><br>
<strong>Pizza</strong>
<select name="Pizza" id="pizza">
<option value="Pepperoni">Pepperoni</option>
<option value="Peri peri">Peri Peri</option>
<option value="Hawaaian">Hawaaian</option>
<option value="Chicken Mushroom">Chicken Mushroom</option>
</select><br><br>
<strong>Crust</strong>
<select name="crust" id="crust">
<option >Stuffed</option>
<option >Crispy</option>
<option >Gluten-free</option>
</select><br><br>
<strong>Size</strong>
<select name="pizzasize" id="pizzasize">
<option >Small</option>
<option >Medium</option>
<option >Large</option>
</select><br><br>
<button type="submit" id="orderbutton" >Order</button><br><br>
<input id="location" type="text" placeholder="Delivery Location">
<button type="submit" id="delivery" >Deliver</button>
</form>
</div>
<div class="message">
</div>
<div class="contactus">
<h2>Contact Us</h2>
<p id="contactdetails">Call Us 0710453821 <br> Address 20200-0519 Eldoret <br> Location Rupa Mall 1st floor</p>
</div>
<script src="script.js"></script>
</body>
</html>