-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
97 lines (80 loc) · 3.36 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
<!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>KFC | Order KFC Chicken Online & Find Restaurants</title>
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./Styles/navbar.css">
<link rel="stylesheet" href="./Styles/home.css">
<link rel="stylesheet" href="./Styles/footer.css">
</head>
<body>
<div id="fixed">
<i class="fa-solid fa-location-dot fa-center"></i>
<p>Allow location access for local store menu and promos</p>
<button><h5>Set Location</h5></button>
</div>
<div id="Navbar">
<!-- appending navbar here -->
</div>
<div id="startDiv">
<!-- appending startOrder here-->
</div>
<div class="carousel-container">
<div class="carousel-track">
<img
src="https://images.ctfassets.net/wtodlh47qxpt/4wzmNLWjqVZZl95Fcf48r2/90bd1294b970f903545d8f0f5278b28a/Allu_Arjun_Combo_Meal__1440x396px.jpg?w=1536&fit=fill&fm=webp"
alt="Image 1"
/>
<img
src="https://images.ctfassets.net/wtodlh47qxpt/500GRYvL6xfLzNRY68rr4u/c66030e22aa477594939c55281fc00fd/variety_bucket_banner_1440x396px.jpg?w=1536&fit=fill&fm=webp"
alt="Image 2"
/>
<img
src="https://images.ctfassets.net/wtodlh47qxpt/4qo6xWTWQmjg8ycSRETMU5/649a454a732e77c4cc534524e48bd800/Box_Meals_App_Banner__1440x396px.jpg?w=1536&fit=fill&fm=webp"
alt="Image 3"
/>
<img
src="https://images.ctfassets.net/wtodlh47qxpt/4gztBB8yAvtp6jV7JAuLD/093fddbb77a78a44a4d3d5e066c592de/KFC_Peri_Peri_Banner__1440x396px.jpg?w=1536&fit=fill&fm=webp"
alt="Image 4"
/>
<img
src="https://images.ctfassets.net/wtodlh47qxpt/2cKs5e17FbKIE7Dza5ZlNM/e7163ee02d91d59d81a20ecf606f707b/Biryani_Banner_1440x396px.jpg?w=1536&fit=fill&fm=webp"
alt="Image 6"
/>
<img
src="https://images.ctfassets.net/wtodlh47qxpt/4qo6xWTWQmjg8ycSRETMU5/649a454a732e77c4cc534524e48bd800/Box_Meals_App_Banner__1440x396px.jpg?w=1536&fit=fill&fm=webp"
alt="Image 5"
/>
<!-- Add more images here -->
</div>
<div class="carousel-dots"></div>
</div>
<div id="welcome">
<img id="menuimg" src="https://online.kfc.co.in/static/media/Stripes_Small_OffersIcon.87fc6256.svg" alt="">
<div class="showThis">
<h3>WELCOME TO KFC!</h3>
<h3 class="showName"></h3>
</div>
</div>
<!-- Data of categories here-->
<div id="categories">
<h2> BROWSE CATEGORIES</h2>
<h1 id="horizontaLine"></h1>
</div>
<div id="catMenu">
</div>
<div id="offerDeals">
<img id="menuimg" src="https://online.kfc.co.in/static/media/Stripes_Small_OffersIcon.87fc6256.svg" alt="">
<h3>OFFERS & DEALS</h3>
<div id="dealsCard">
</div>
</div>
<div id="footer">
<!-- Importing footer here -->
</div>
</body>
</html>
<script type="module" src="./index.js"></script>