-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdominos.html
249 lines (197 loc) · 12.5 KB
/
dominos.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
<!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>Document</title>
<link rel="stylesheet" href="dominos.css">
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
</head>
<body>
<a href="#" id="banner"></a>
<header>
<div class="nav-left">
<a href="#"><img src="https://www.dominos.co.in/assets/Logo.png"></a>
</div>
<div class="nav-right">
<a href="https://play.google.com/store/apps/details?id=com.Dominos&hl=en&shortlink=3e839899&pid=Brand-Home&c=brand-home"><button id="btn">Download App</button> </a>
</div>
<div class="nav-fill">
<a href="#">OUR MENU </a>
<a href="#">STORE FINDER </a>
<a href="#">GIFT CARD </a>
<a href="#">CORPORATE ENQUIRY </a>
<a href="#">CONTACT </a>
</div>
</header>
<section class="first">
<div class="online-order" id="online-banner">
<div class="banner-text">
<h1 class="order-heading">Domino's online ordering</h1>
<p class="deliver-message" id="delivery-text">Yummy pizza delivered fast & fresh</p>
<a href="https://m.dominos.co.in/changeAddress?src=brand" onclick="redirectToOrderOnline()">
<button>ORDER ONLINE NOW</button>
</a>
<div class="ad">
<img src="https://www.dominos.co.in/assets/Safety_Merchandising_adaptation_400x128px.jpg" alt="">
</div>
</section>
<section>
<div>
<h1 class="coupons">Coupons & Offers</h1>
<div class="swiper-container mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide"><img src="https://api.dominos.co.in/prod-olo-api/images/amazon_home_20210412.jpg"></div>
<div class="swiper-slide"><img src="https://api.dominos.co.in/prod-olo-api/images/Home_Paytm_20210519.jpg"></div>
<div class="swiper-slide"><img src="https://api.dominos.co.in/prod-olo-api/images/Home_airtel_30082020.jpg"></div>
<div class="swiper-slide"><img src="https://api.dominos.co.in/prod-olo-api/images/Home_Freecharge_20210405.jpg"></div>
<div class="swiper-slide"><img src="https://api.dominos.co.in/prod-olo-api/images/Dominos_Mobi_Home_20210503.jpg"></div>
<div class="swiper-slide"><img src="https://api.dominos.co.in/prod-olo-api/images/Home_payzapp_20201029.jpg"></div>
<div class="swiper-slide"><img src="https://api.dominos.co.in/prod-olo-api/images/Home_au_20201029.jpg"></div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
</div>
<section>
<h1 class="explore">Explore</h1>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="col-lg-3">
<div class="col text-center" id="welcome">
<img src="https://www.dominos.co.in/assets/menu.png">
<h1>OUR MENU</h1>
<p>Exoplore ou range of delicious <br> pizzas, delivered in 30 minutes!</p>
<div class="footer">
<a href="#">DISCOVER PIZZA</a>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="col text-center" id="welcome">
<img src="https://www.dominos.co.in/assets/store.png">
<h1>NEARBY STORE</h1>
<p>Find a Domino's Pizza restaurant <br> near you</p>
<div class="footer">
<a href="#">FIND DOMINO'S STORE</a>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="col text-center" id="welcome">
<img src="https://www.dominos.co.in/assets/birthday.png" width="45px" height="84px">
<h1>BIRTHDAY PARTY</h1>
<p>Celebrate the joy of birthday with <br> Fresh & Hot pizzas</p>
<div class="footer">
<a href="#">BOOK NOW</a>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="col text-center" id="welcome">
<img src="https://www.dominos.co.in/assets/catering.png" height="84px">
<h1>CATERING</h1>
<p>Live Domino's Kitchen for <br> weddings / corporate events</p>
<div class="footer">
<a href="#">BOOK NOW</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="about" id="about">
<div class="content">
<div class="w50">
<img src="https://www.dominos.co.in/assets/new_app_img.png" class="proPic" alt="">
</div>
<div class="contentBx ">
<h2>Unlock Exclusive Offers</h2>
<p>For lightning fast ordering experience </p>
<p>download the Domino’s app</p>
<img src="https://www.dominos.co.in/assets/play_store.png"> <img src="https://www.dominos.co.in/assets/app_store.png">
</div>
</section>
<section id="questions">
<div id="first">
<b><h3>Domino's Pizza: Delivering Happiness</h3></b>
<p>What’s better than having a crispy melty pizza, you ask?</p>
<p>Having that crispy and melty pizza in the comfort of your own home with the ones you love, we say.</p>
<p>With Domino's it is always “Rishton ka time”. Whether it's a treat for your promotion, a kid topping his class or winning the heart of your wife who is too tired to cook after a long day at work! A cheesy slice of the best pizza is all one needs to put things into perspective and start any celebration. Plus, you do not even need to rush to the restaurant to have one now. A call, a few clicks on our website or a few touches on the mobile screen is all you have to do to have that tempting, light-on-the-pocket pizza at your doorstep.</p>
<p>There is something for everyone here. The vegetarians, non-vegetarians, the sides’ lovers and also the ones who love to have something sweet by the time they reach the last bite of the last slice of pizza slice.</p>
</div>
<div id="second">
<b><h3>What We Need - More Choice. More Fun.</h3></b>
<p>No matter what the situation, pizza always helps. Especially a pizza that gives you the freedom to choose your toppings - from paneer, crisp capsicum, onion, grilled mushroom, golden corn, black olives, fresh tomato, red paprika, jalapeno, paneer tikka and extra cheese to non-veg toppings such as pepper barbeque chicken, peri-peri chicken, grilled chicken rasher, chicken sausage or chicken tikka- the options are almost endless, anything and everything you can think of that too on top of the crust of your choice - New hand-tossed crust, wheat thin crust, cheese burst crust, classic hand-tossed crust or a fresh pan pizza. Because just like a pizza, Domino's understands you.</p>
<p>And to shoo away those end-of-the-month blues while placing your order with our pizza restaurant, check out the everyday pizzas from pizza mania combos with everyday value offer of 2 pizzas starting at just ₹99 (regular size) and ₹199 (medium size) each.</p>
</div>
<div id="third">
<b><h3>The Promise Of 30-Minute Delivery</h3></b>
<p>The icing on the cake or more aptly the extra cheese on your already fabulous pizza is that Domino’s takes only half an hour for its pizza delivery service. Don’t believe us? Time it if you please. With 1250+ stores present all over India, you can have a Domino’s pizza even while traveling on a train. Yes, you are reading it right, you can enjoy pizza on train too.</p>
<p>So stop googling for the “pizza shops near me” and order from your nearest pizza outlet to have a hot box of pizza on your table in the next 30 minutes, or berth at the next halting station.</p>
</div>
<div id="fourth">
<b><h3>Franchise Information</h3></b>
<p>Jubilant FoodWorks Limited is the Master Franchisee of Domino’s Pizza in India, Bangladesh, Sri Lanka and Nepal with sole and exclusive rights to own and operate Domino’s Pizza restaurants in these territories. For any franchise-related queries, kindly email us directly at [email protected]</p>
<p>We have come across a few instances of fraudsters posing as Jubilant FoodWorks and asking for payment from gullible investors against the promise of a Domino’s franchise. We therefore caution and urge all interested parties to be careful and vigilant and interact only with the email id mentioned above. Anyone dealing with such fraudsters shall be doing so on their own peril, risk and consequences.</p>
<p>Neither Jubilant FoodWorks nor its Directors/Officers shall be responsible for any loss, harm, damage or fraud that occurs or may occur or arise to any person who decides to access such fake websites, or deal with them.</p>
</div>
</section>
<footer>
<div class="middle">
<div class="center">
<ul>
<li><h3>COMPANY</h3></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Investor</a></li>
<li><a href="#">Investor FeedBack</a></li>
<li><a href="#">Ads</a></li>
</ul>
<ul>
<li><h3>ABOUT</h3></li>
<li><a href="#">Gift card</a></li>
<li><a href="#">Card Balance Enquiry</a></li>
<li><a href="#">FAQ</a></li>
</ul>
<ul>
<li><h3>LEGAL</h3></li>
<li><a href="#">Disclaimer</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
<ul id="logo">
<li><h3>SOCIAL MEDIA</h3></li>
<li><a href="#"><img src="https://www.dominos.co.in/assets/fb.png" alt=""></a></li>
<li><a href="#"><img src="https://www.dominos.co.in/assets/twitter.png" alt=""></a></li>
<li><a href="#"><img src="https://www.dominos.co.in/assets/instagram.png" alt=""></a></li>
<li><a href="#"><img src="https://www.dominos.co.in/assets/You_tube.png" alt=""></a></li>
</ul>
<ul class="copy text-center">
<li>All Rights Reserved. Copyright © Jubilant FoodWorks Ltd.</li>
</ul>
</div>
</footer>
<div class="button">
<a href="end.html">
<button><b>Ending</b></button>
</a>
</div>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script>
var swiper = new Swiper(".mySwiper", {
pagination: {
el: ".swiper-pagination",
type: "fraction",
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
</script>
</body>
</html>