-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
241 lines (232 loc) · 8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="shortcut icon"
href="./assets/icons/favicon.svg"
type="image/x-icon"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foodi - Interactive Restaurant Menu all here</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<!-- BoxIcons Link -->
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
<!-- Bootstrap CDN Link -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<!-- CSS Link -->
<link rel="stylesheet" href="scss/style.css" />
</head>
<body>
<!-- Navbar Section Start -->
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="./index.html"
><img src="./assets/icons/logo.svg" alt="logo"
/></a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-around"
id="navbarNavAltMarkup"
>
<div class="navbar-nav">
<a class="nav-link active" aria-current="page" href="#">Home</a>
<a class="nav-link" href="/menu.html">Menus</a>
<a class="nav-link" href="/contact.html">Contact</a>
</div>
</div>
<div
class="align-items-center nav-menu-icons align-items-center d-none d-lg-flex"
>
<i class="bx bx-search"></i>
<i class="bx bx-shopping-bag"></i>
<button class="primary-btn">
<i class="bx bx-phone-call"></i> Contact
</button>
</div>
</div>
</nav>
<!-- Navbar Section End -->
<!-- Hero Section Start -->
<div class="container hero-section py-5">
<div class="row align-items-center">
<div class="col-12 col-lg-5 align-items-center">
<div>
<h1 class="fw-bolder hero__title mb-5">
Dive into Delights Of Delectable
<span class="hero__title-main">Food</span>
</h1>
<p class="hero__para mb-5">
Where Each Plate Weaves a Story of Culinary Mastery and Passionate
Craftsmanship
</p>
</div>
<div>
<a href="" class="primary-btn fw-bold">Order Now</a>
</div>
</div>
<div class="col-12 col-lg-7">
<div>
<img
class="hero__img"
class="img-fluid"
src="assets/hero-img.png"
alt=""
/>
</div>
</div>
</div>
</div>
<!-- Hero Section End -->
<!-- Categories Section Start -->
<div class="container categories-section mt-5">
<p class="secondary-color text-uppercase text-center">
Customer Favorites
</p>
<h1 class="fw-bolder text-center">Popular Catagories</h1>
<div class="row column-gap-5 justify-content-center">
<div class="col-6 col-lg-3 categories mt-5">
<div class="mx-auto categories__item mt-5">
<img src="./assets/main-dish.png" alt="" />
</div>
<h3 class="text-center mt-2">Main Dish</h3>
<p class="text-center mb-4">(86 dishes)</p>
</div>
<div class="col-6 col-lg-3 categories mt-5">
<div class="mx-auto categories__item mt-5">
<img src="./assets/main-dish.png" alt="" />
</div>
<h3 class="text-center mt-2">Break Fast</h3>
<p class="text-center mb-4">(12 break fast)</p>
</div>
<div class="col-6 col-lg-3 categories mt-5">
<div class="mx-auto categories__item mt-5">
<img src="./assets/main-dish.png" alt="" />
</div>
<h3 class="text-center mt-2">Main Dish</h3>
<p class="text-center mb-4">(86 dishes)</p>
</div>
<div class="col-6 col-lg-3 categories mt-5">
<div class="mx-auto categories__item mt-5">
<img src="./assets/main-dish.png" alt="" />
</div>
<h3 class="text-center mt-2">Main Dish</h3>
<p class="text-center mb-4">(86 dishes)</p>
</div>
</div>
</div>
<!-- Categories Section End -->
<!-- Testimonials Section Start -->
<section class="container testimonials-section">
<div class="row">
<div class="col-12 col-lg-5">
<img class="img-fluid" src="./assets/chef.svg" alt="" />
</div>
<div class="col-12 col-lg-7 my-auto">
<p class="secondary-color">Testimonials</p>
<h1 class="my-3">
What Our Customers <br />
Say About Us
</h1>
<p class="mb-4">
“I had the pleasure of dining at Foodi last night, and I'm still
raving about the experience! The attention to detail in presentation
and service was impeccable”
</p>
<a href="./menu.html" class="primary-btn">Our Menu</a>
</div>
</div>
</section>
<!-- Footer Section Start -->
<footer class="container footer-section mt-5">
<div class="row">
<div class="col-12 col-lg-3 ms-4 m-md-0">
<img class="mb-4 mx-auto" src="./assets/icons/logo.svg" alt="logo" />
<p>
Savor the artistry where every <br />
dish is a culinary <br />
masterpiece
</p>
</div>
<div class="col-12 col-lg-3">
<h5>Useful links</h5>
<ul>
<li><a href="">About Us</a></li>
<li><a href="">Events</a></li>
<li><a href="">Blogs</a></li>
<li><a href="">FAQ</a></li>
</ul>
</div>
<div class="col-12 col-lg-3">
<h5>Main Menu</h5>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Offers</a></li>
<li><a href="">Menus</a></li>
<li><a href="">Reservation</a></li>
</ul>
</div>
<div class="col-12 col-lg-3">
<h5>Contact Us</h5>
<ul>
<li>tushar@gmail.com</li>
<li>+8801726814131</li>
<li>Social Media</li>
</ul>
</div>
<div class="row my-4 text-center">
<div class="col-12 col-lg-4">
<div class="social-icons">
<div class="icons-box"><i class="bx bxl-facebook"></i></div>
<div class="icons-box icon-box-light">
<i class="bx bxl-instagram"></i>
</div>
<div class="icons-box icon-box-light">
<i class="bx bxl-twitter"></i>
</div>
<div class="icons-box icon-box-light">
<i class="bx bxl-youtube"></i>
</div>
</div>
</div>
<div class="col-12 col-lg-8 mt-3">
<p>
Copyright © 2023 Gaus Al Munir Tushar | All rights reserved
</p>
</div>
</div>
</div>
</footer>
<!-- Footer Section End -->
<!-- Bootstrap JavaScript CDN -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
</body>
</html>