-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
298 lines (256 loc) · 9 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/bunny-chow.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/css/style.css">
<title>AfroFeastHub</title>
</head>
<body>
<!--nav section-->
<header class="top-nav">
<div>
<h1> AFROFEASTHUB</h1>
</div>
<input type="checkbox" id="menu-toggle">
<label for="menu-toggle" class="menu-button-container">
<div class="menu-button"></div>
</label>
<ul class="menu">
<li>
<a href="#menu">Menu</a>
</li>
<li>
<a href="#food">Food</a>
</li>
<li>
<a href="#services">Services</a>
</li>
<li>
<a href="#about-us">About</a>
</li>
</ul>
</header>
<!--hero section-->
<section class="hero">
<div class="hero-content">
<div class="hero-content-info" data-aos="fade-left">
<h1>Welcome to AfroFeastHub. Your Gateway to the Rich Flavors of Kenya!</h1>
<p>Explore the diverse and vibrant world of Kenyan cuisine.</p>
</div>
</div>
</section>
<!--about us section-->
<section class="about-us" id="about-us">
<div class="about-us__image">
<div class="about-us__image-food">
<img src="/pilau.jpg" alt="pilau" data-aos="fade-right">
</div>
<div class="about-us__image-food">
<img src="/chicken.jpg" alt="chicken" data-aos="fade-right">
</div>
<div class="about-us__image-food">
<img src="/stew.jpg" alt="rice and chicken" data-aos="fade-right">
</div>
<div class="about-us__image-food">
<img src="/ugali.jpg" alt="ugali" data-aos="fade-right">
</div>
<div class="about-us__image-food">
<img src="/fish.jpg" alt=" fish" data-aos="fade-right">
</div>
<div class="about-us__image-food">
<img src="/ugFish.jpg" alt="ugali and fish" data-aos="fade-right">
</div>
</div>
<div class="about-us__content" data-aos="fade-left">
<h3 class="food__title">Our mission is to bring African flavours to you.</h3>
<p class="food__description">At AfroFeastHub, we embark on a tantalizing journey through the rich tapestry of African cuisine. Our passion is to celebrate and share the diverse flavors, traditions, and stories that make African food a true culinary adventure.</p>
</div>
<div class="about-content__testimonial" data-aos="fade-up">
<div class="about-content__customer flex-center">
<h4>24<span>k+</span></h4>
<p>Happy Customers</p>
</div>
<div class="about-content__review">
<img src="/user.png" alt="user" />
<p>"This is the most incredible Kenyan food delivery service that ever existed"</p>
</div>
</div>
</section>
<!--popular section-->
<section class="popular-foods" id="menu">
<h2 class="popular-foods__title" data-aos="flip-up">Popular food</h2>
<div class="popular-foods__catalogue" data-aos="fade-up">
<article class="popular-foods__card">
<img class="popular-foods__card-image" src="/ugFish.jpg" alt="ugali and fish">
<h4 class="popular-foods__card-title">Ugali and Fish</h4>
<div class="popular-foods__card-details flex-between">
<div class="popular-foods__card-rating">
<img src="/star.svg" alt="star">
<p>4.9</p>
</div>
<p class="popular-foods__card-price">Ksh300/=</p>
</div>
</article>
<article class="popular-foods__card active card">
<img class="popular-foods__card-image" src="/stew.jpg" alt="beef stew">
<h4 class="popular-foods__card-title">Rice stew</h4>
<div class="popular-foods__card-details flex-between">
<div class="popular-foods__card-rating">
<img src="/star.svg" alt="star">
<p>5.0</p>
</div>
<p class="popular-foods__card-price">Ksh250/=</p>
</div>
</article>
<article class="popular-foods__card">
<img class="popular-foods__card-image" src="/viazi.jpg" alt="fried potatoes">
<h4 class="popular-foods__card-title">Viazi Karai</h4>
<div class="popular-foods__card-details flex-between">
<div class="popular-foods__card-rating">
<img src="/star.svg" alt="star">
<p>4.7</p>
</div>
<p class="popular-foods__card-price">Ksh100/=</p>
</div>
</article>
</div>
</section>
<!--trending section-->
<section class="trending" id="food">
<h2>What's trending</h2>
<section class="trending-food">
<div class="trending__content" data-aos="fade-right">
<p class="food__subtitle">African food</p>
<p class="food__description">Feel the taste of African food</p>
<ul class="trending__list flex-between">
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Pilau</p>
</li>
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Ugali and fish</p>
</li>
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Rice and beef stew</p>
</li>
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Chicken stew</p>
</li>
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Viazi karai</p>
</li>
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Fried fish</p>
</li>
</ul>
</div>
</section>
<section class="trending-drinks">
<div class="trending__content" data-aos="fade-left">
<h3 class="food__subtitle">Drinks</h3>
<p class="food__description">Feel the taste of the most energizing drinks</p>
<ul class="trending__list flex-between">
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Pepsi</p>
</li>
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Coca cola</p>
</li>
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Fanta passion</p>
</li>
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Fanta blackcurrent</p>
</li>
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Mirinda</p>
</li>
<li>
<div class="trending__icon flex-center">
<img src="/check.svg" alt="check">
</div>
<p>Sprite</p>
</li>
</ul>
</div>
</section>
</section>
<!--subscription section-->
<section class="subscription flex-center" id="services">
<h2 data-aos="flip-down">
Get offers straight to your inbox
</h2>
<p data-aos="fade-up">Sign up for the AfroFeastHub newsletter</p>
<div class="subscription__form" data-aos="fade-up">
<input type="email" placeholder="Enter your email">
<button>Get started</button>
</div>
</section>
<!--footer section-->
<footer class="footer flex-between">
<h3 class="footer__logo">
<span>AfroFeastHub</span>
</h3>
<ul class="footer__nav">
<li>
<a href="#menu">Menu</a>
</li>
<li>
<a href="#food">Food</a>
</li>
<li>
<a href="#services">Services</a>
</li>
<li>
<a href="#about-us">About</a>
</li>
</ul>
<ul class="footer__social">
<li class="flex-center">
<img src="/facebook.svg" alt="facebook">
</li>
<li class="flex-center">
<img src="/instagram.svg" alt="instagram">
</li>
<li class="flex-center">
<img src="/twitter.svg" alt="twitter">
</li>
</ul>
</footer>
<script src="/js/script.js"></script>
</body>
</html>