-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
316 lines (306 loc) · 10.5 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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cafe App</title>
<!-- Css -->
<link rel="stylesheet" href="style.css">
<!-- Boxicon Import Linki-->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="shortcut icon" href="" type="">
</head>
<body>
<!-- Header Area -->
<header>
<div class="nav container">
<!-- logo -->
<a href="#" class="Logo">Q.Cafe</a>
<!-- Navbar -->
<nav class="navbar">
<a href="#" class="nav-link">Home</a>
<a href="#" class="nav-link">Services</a>
<a href="#" class="nav-link">Products</a>
<a href="#" class="nav-link">Team</a>
<a href="#" class="nav-link">Reviews</a>
</nav>
<!-- nav icons -->
<div class="nav-icons">
<a href="#"><i class='bx bx-user'></i></a>
<a href="#"><i class='bx bx-shopping-bag'></i></a>
<a href="#"><i class='bx bx-menu' id="menu icon" ></i></a>
</div>
</div>
</header>
<!-- Home Area -->
<section class="home container">
<div class="home-text">
<h1>
Enjoy a new blend <br />
of coffee beans
</h1>
<p>
Brew or order a Perfect Coffee based on your mood Anywhere Anytime
</p>
<a href="#" class="btn">
<span>Shop Now</span>
<i class="bx bx-right-arrow-alt"></i>
</a>
</div>
<!-- Home Image -->
<img src="./Images/hero.png" class="home-img">
</section>
<!-- Services Area -->
<div class="product-content"></div>
<!-- heading -->
<div class="heading">
<h2>
Blending culture, coffee & top <br />
notch services
</h2>
</div>
<!-- service content -->
<div class="service-content">
<div class="ser-box">
<img src="./images/ser-1.png" alt="" />
<p>Equipment</p>
</div>
<div class="ser-box">
<img src="./images/ser-2.png" alt="" />
<p>Type Of Coffee</p>
</div>
<div class="ser-box">
<img src="./images/ser-3.png" alt="" />
<p>Take A Way</p>
</div>
<div class="ser-box">
<img src="./images/ser-4.png" alt="" />
<p>Beans Varient</p>
</div>
<div class="ser-box">
<img src="./images/ser-5.png" alt="" />
<p>Pastry</p>
</div>
</div>
<section class="products container" id="products">
<!-- heading -->
<!-- heading -->
<div class="heading">
<h2>Our Top Selling Products</h2>
<p>
It takes a lot of heart and hard work at every step to create the best
coffee possible, and we know it takes a lot of grit to keep your own
grind going.
</p>
</div>
<!-- products-content -->
<div class="product-content">
<!-- product-box -->
<div class="product-box">
<i class="bx bx-heart heart-icon"></i>
<img src="./Images/product-1 (2).png" alt="" />
<p>4 Types Avaialble</p>
<h2>Instant Coffee</h2>
<div class="product-info">
<span>$14</span>
<i class="bx bx-shopping-bag"></i>
</div>
</div>
<!-- product-box -->
<div class="product-box">
<i class="bx bx-heart heart-icon"></i>
<img src="./Images/product-2 (1).png" alt="" />
<p>4 Types Avaialble</p>
<h2>Black Coffee</h2>
<div class="product-info">
<span>$14</span>
<i class="bx bx-shopping-bag"></i>
</div>
</div>
<!-- product-box -->
<div class="product-box">
<i class="bx bx-heart heart-icon"></i>
<img src="./images/product-3.png" alt="" />
<p>4 Types Avaialble</p>
<h2>Latte</h2>
<div class="product-info">
<span>$14</span>
<i class="bx bx-shopping-bag"></i>
</div>
</div>
<!-- product-box -->
<div class="product-box">
<i class="bx bx-heart heart-icon"></i>
<img src="./images/product-4.png" alt="" />
<p>4 Types Avaialble</p>
<h2>Cappuccino</h2>
<div class="product-info">
<span>$14</span>
<i class="bx bx-shopping-bag"></i>
</div>
</div>
<!-- product-box -->
<div class="product-box">
<i class="bx bx-heart heart-icon"></i>
<img src="./images/product-5.png" alt="" />
<p>4 Types Avaialble</p>
<h2>Expresso</h2>
<div class="product-info">
<span>$14</span>
<i class="bx bx-shopping-bag"></i>
</div>
</div>
<!-- product-box -->
<div class="product-box">
<i class="bx bx-heart heart-icon"></i>
<img src="./images/product-6.png" alt="" />
<p>4 Types Avaialble</p>
<h2>Mocha</h2>
<div class="product-info">
<span>$14</span>
<i class="bx bx-shopping-bag"></i>
</div>
</div>
</div>
</section>
<!-- * Team Area -->
<section class="team container" id="team">
<!-- heading -->
<div class="heading">
<h2>Meet Our Experts</h2>
</div>
<!-- team content -->
<div class="team-content">
<!-- team-box -->
<div class="team-box">
<img src="./images/team-1.png" alt="" />
<h2>Sara Zones</h2>
<span>Co- Lead chef </span>
<p>
As a roaster we search the world over to establish relationships
with great farmers cultivating great coffees,
</p>
</div>
<!-- team-box -->
<div class="team-box">
<img src="./images/team-2.png" alt="" />
<h2>Selena Zones</h2>
<span>Lead chef </span>
<p>
As a roaster we search the world over to establish relationships
with great farmers cultivating great coffees,
</p>
</div>
<!-- team-box -->
<div class="team-box">
<img src="./images/team-3.png" alt="" />
<h2>Taylor Zone</h2>
<span>Co- Lead chef </span>
<p>
As a roaster we search the world over to establish relationships
with great farmers cultivating great coffees,
</p>
</div>
</div>
</section>
<!--* Reviews-->
<section class="review container" id="review">
<!-- Heading -->
<div class="heading">
<h2>Customer's Reviews</h2>
</div>
<!-- Reviews -->
<div class="reviews">
<!-- Review Box -->
<div class="review-box">
<img src="./Images/review-1.jpg" alt="">
<H2>Jonas Blue</H2>
<span>The taste of coffee is Stunning, <br />
subtle and smooth flavor.
</span>
<p>
The taste of coffee can vary depending on the type of bean, roast
level, and brewing method used. Some people prefer a strong and bold
taste, while others prefer a more subtle and smooth flavor.
</p>
</div>
<div class="review-box">
<img src="./Images/review-2.jpg" alt="">
<H2>Eden Blue</H2>
<span>The taste of coffee is Stunning, <br />
subtle and smooth flavor.
</span>
<p>
The taste of coffee can vary depending on the type of bean, roast
level, and brewing method used. Some people prefer a strong and bold
taste, while others prefer a more subtle and smooth flavor.
</p>
</div>
<div class="review-box">
<img src="./Images/review-3.jpg" alt="">
<H2>Charlie</H2>
<span>The taste of coffee is Stunning, <br />
subtle and smooth flavor.
</span>
<p>
The taste of coffee can vary depending on the type of bean, roast
level, and brewing method used. Some people prefer a strong and bold
taste, while others prefer a more subtle and smooth flavor.
</p>
</div>
</div>
</section>
<!--! Book -->
<section class="book container" id="book">
<img src="./Images/book.jpg" class="book-img" alt="" >
<div class="book-overlay"></div>
<div class="book-data">
<h2>Let's book a Table <br> for You</h2>
<form >
<div class="input-box">
<i class='bx bx-phone-call'></i>
<input type="tel" placeholder="Your Number" required/>
</div>
<div class="input-box">
<i class='bx bx-user'></i>
<input type="Number" placeholder="People" required/>
</div>
<button type="submit" class="book-btn">Book Table</button>
</form>
<p>We will contact you to confirm your booking</p>
</div>
</section>
<!-- * Footer -->
<footer class="footer container">
<div class="footer-box">
<a href="#" class="logo">Q.Cafe</a>
<div class="social">
<a href="#"><i class="bx bxl-twitch"></i></a>
<a href="#"><i class="bx bxl-twitter"></i></a>
<a href="#"><i class="bx bxl-linkedin"></i></a>
<a href="#"><i class="bx bxl-youtube"></i></a>
</div>
</div>
<div class="footer-box">
<h3>About</h3>
<a href="#">Our Story </a>
<a href="#">FAQ </a>
<a href="#">Careers </a>
</div>
<div class="footer-box">
<h3>Customer's Recourses</h3>
<a href="#">Menu</a>
<a href="#">Location </a>
<a href="#">Support </a>
</div>
<div class="footer-box">
<h3>Services</h3>
<a href="#">Payment Options</a>
<a href="#">Refunds & Exchanges </a>
<a href="#">Limitation Of Liability </a>
</div>
</footer>
<!-- * copyright -->
<p class="copyright">© QCAFE</p>
</body>
</html>