-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
116 lines (102 loc) · 3.49 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
<!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>Khao Piyo Chicken</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="../tall-question-6900/common/common.css">
</head>
<body>
<div id="order-settings-modal">
<!-- updated dynamically -->
</div>
<div id="nav-bar">
<!-- updated dynamically -->
</div>
<div id="main">
<div id="order-settings1">
<!-- updated dynamically -->
</div>
<div id="order-settings2">
<h3>Select your order type</h3>
<div id="order-types">
<button value="Delivery">Delivery</button>
<button value="Pick up">Pick up</button>
<button value="Dine in">Dine in</button>
</div>
</div>
<div id="slide-show">
<img src="" alt="slide">
<div id="slide-buttons">
<button>⇇</button>
<button>⇉</button>
</div>
</div>
<h1 id="greetings">Welcome to KPC!</h1>
<div id="browse-categories">
<h1>Browse categories</h1>
<div id="categories-cards">
<div><img src="resources/categoriesImages/category1.jpg" alt=""><h3><a href="menu/menu.html">Chicken Buckets</a></h3></div>
<div><img src="resources/categoriesImages/category2.jpg" alt=""><h3><a href="menu/menu.html">Exclusive deals</a></h3></div>
<div><img src="resources/categoriesImages/category3.jpg" alt=""><h3><a href="menu/menu.html">New Launch</a></h3></div>
<div><img src="resources/categoriesImages/category4.jpg" alt=""><h3><a href="menu/menu.html">Biryani Buckets</a></h3></div>
<div><img src="resources/categoriesImages/category5.jpg" alt=""><h3><a href="menu/menu.html">Box Meals</a></h3></div>
<div><img src="resources/categoriesImages/category6.jpg" alt=""><h3><a href="menu/menu.html">Burgers</a></h3></div>
<div><img src="resources/categoriesImages/category7.jpg" alt=""><h3><a href="menu/menu.html">Snacks</a></h2></div>
<div><img src="resources/categoriesImages/category8.svg" alt=""><h3><a href="menu/menu.html">View all menu ⇒</a></h3></div>
</div>
</div>
<div id="deals">
<h1>Offers & Deals</h1>
<div id="deals-cards">
<div>
<img src="resources/offersImages/offer1.jpg" alt="offer">
<div>
<h2>2 PC HOT CHICKEN ZINGER</h2>
<p></p>
<div id="buttons">
<button><a href="deals/deals.html">View Details</a></button>
<button class="redeem-button" data-offerid="1">Redeem</button>
</div>
</div>
</div>
<div>
<img src="resources/offersImages/offer2.jpg" alt="offer">
<div>
<h2>2 PC HOT VEG ZINGER</h2>
<p></p>
<div id="buttons">
<button><a href="deals/deals.html">View Details</a></button>
<button class="redeem-button" data-offerid="2">Redeem</button>
</div>
</div>
</div>
<div>
<img src="resources/offersImages/offer3.jpg" alt="offer">
<div>
<h2>2 PC CRISPY CHICKEN</h2>
<p></p>
<div id="buttons">
<button><a href="deals/deals.html">View Details</a></button>
<button class="redeem-button" data-offerid="3">Redeem</button>
</div>
</div>
</div>
</div>
</div>
<div id="redeem-feedback-modal">
<div id="redeem-feedback-modal-content">
<h2>Congratulations!!</h2>
<h3>You got a new coupon</h3>
</div>
</div>
<div id="footer">
<!-- updated dynamically -->
</div>
</div>
</body>
</html>
<script src="common/common.js"></script>
<script src="index.js"></script>