-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
320 lines (307 loc) · 11.1 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
317
318
319
320
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--=============== FAVICON ===============-->
<link
rel="shortcut icon"
href="assets/img/favicon.png"
type="image/x-icon"
/>
<!--=============== REMIXICONS ===============-->
<link
href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css"
rel="stylesheet"
/>
<!--=============== CSS ===============-->
<link rel="stylesheet" href="./styles.css" />
<title>Responsive coffee website - Bedimcode</title>
</head>
<body>
<!--==================== HEADER ====================-->
<header class="header" id="header">
<div class="header__border"></div>
<nav class="nav container">
<a href="#" class="nav__logo">
<img src="./assets/img/logo.png" alt="logo" />
Coffetto
</a>
<div class="nav__menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link active-link">
<i class="ri-home-5-fill"></i>
<span>Home</span>
</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">
<i class="ri-award-fill"></i>
<span>About</span>
</a>
</li>
<li class="nav__item">
<a href="#steps" class="nav__link">
<i class="ri-compass-3-fill"></i>
<span>Steps</span>
</a>
</li>
<li class="nav__item">
<a href="#testimonial" class="nav__link">
<i class="ri-message-3-fill"></i>
<span>Testimonial</span>
</a>
</li>
</ul>
</div>
</nav>
</header>
<!--==================== MAIN ====================-->
<main class="main">
<!--==================== HOME ====================-->
<section class="home section" id="home">
<div class="home__container container grid">
<div class="home__data">
<h3 class="home__subtitle">EXCEPTIONAL QUALITY</h3>
<h1 class="home__title">
It's time for a <br />
good coffee
<img src="assets/img/home-coffee-title.png" alt="home image" />
</h1>
<p class="home__description">
Each select coffee bean reflects our commitment to Peruvian coffee
growers, who bring the best select coffee to your table.
</p>
<a href="#" class="button">
Get Started <i class="ri-arrow-right-s-line"></i>
</a>
</div>
<img
src="assets/img/home-coffee.png"
alt="home image"
class="home__img"
/>
</div>
</section>
<!--==================== PRODUCTS ====================-->
<section class="products">
<div class="products__bg section">
<div class="products__container container grid">
<div class="products__data">
<a href="#about" class="products__button">
Scroll Down <i class="ri-arrow-down-s-line"></i>
</a>
<p class="products__description">
We strive to form deep partnerships with farmers from all over
the world to create perspective together and form healthy
working relationships built on trust and respect.
</p>
</div>
<div class="products__content">
<article class="products__card">
<img
src="./assets/img/product-coffee-1.png"
alt="product image"
class="products__img"
/>
<h3 class="products__name">Classic Coffee</h3>
<span class="products__price"> $17.90</span>
</article>
<article class="products__card">
<img
src="./assets/img/product-coffee-2.png"
alt="product image"
class="products__img"
/>
<h3 class="products__name">Black coffee</h3>
<span class="products__price">$24.90</span>
</article>
<article class="products__card">
<img
src="./assets/img/product-coffee-3.png"
alt="product image"
class="products__img"
/>
<h3 class="products__name">Strong coffee</h3>
<span class="products__price"> $32.90</span>
</article>
</div>
</div>
</div>
</section>
<!--==================== ABOUT ====================-->
<section class="about" id="about">
<div class="about__bg section">
<div class="about__container container grid">
<div class="about__data">
<h2 class="section__title">Our History</h2>
<p class="about__description">
We make and grow the best coffee in Peru, accompanying families
since 1930, with professional workers who harvest, collect and
select the coffee with quality work, thus providing exquisite
coffee to enjoy together as a family.
</p>
</div>
<img
src="./assets/img/about-coffee.png"
alt="About Image"
class="about__img"
/>
</div>
</div>
</section>
<!--==================== STEPS ====================-->
<section class="steps" id="steps">
<div class="steps__bg section">
<h2 class="section__title">Steps of manufacturing our products</h2>
<div class="steps__container container grid">
<img
src="./assets/img/coffee-beans-bg.png"
alt="steps image"
class="steps__bg-img"
/>
<div class="steps__content">
<img
src="./assets/img/steps-curve-line.svg"
alt="steps image"
class="steps__border"
/>
<div class="steps__card">
<div class="steps__circle">
<div class="steps__subcircle">01</div>
<img
src="./assets/img/steps-green-coffee.png"
alt="steps image"
class="steps__img"
/>
</div>
<p class="steps__description">
Harvest occurs annually when the coffee beans reach maturity
and are collected for processing.
</p>
</div>
<div class="steps__card steps__card-move">
<div class="steps__circle">
<div class="steps__subcircle">02</div>
<img
src="./assets/img/steps-coffee-beans.png"
alt="steps image"
class="steps__img"
/>
</div>
<p class="steps__description">
The beans are dried using a wet or dry technique, depending on
the taste we want to obtain.
</p>
</div>
<div class="steps__card">
<div class="steps__circle">
<div class="steps__subcircle">03</div>
<img
src="./assets/img/steps-ground-coffee.png"
alt="steps image"
class="steps__img"
/>
</div>
<p class="steps__description">
The coffee is roasted and acquires its flavor by processing
the grain in ovens.
</p>
</div>
</div>
</div>
</div>
</section>
<!--==================== TESTIMONIAL ====================-->
<section class="testimonial" id="testimonial">
<div class="testimonial__bg section">
<div class="testimonial__container container grid">
<div class="testimonial__data">
<h2 class="section__title">
Coffee is the best drink in the morning, it keeps you focused
</h2>
<span class="testimonial__name">Jhon Doe</span>
</div>
<img
src="./assets/img/testimonial-coffee.png"
alt="testimonial image"
class="testimonial__img"
/>
</div>
</div>
</section>
</main>
<!--==================== FOOTER ====================-->
<footer class="footer">
<div class="footer__bg">
<img
src="./assets/img/coffee-beans-bg.png"
alt="footer__bg"
class="footer__bg-img"
/>
<div class="footer__container container grid">
<div class="footer__data grid">
<div>
<a href="#" class="footer__logo">
<img src="./assets/img/logo.png" alt="logo" />
Coffetto
</a>
<h3 class="footer__title">Sign up for our newsletter</h3>
</div>
<form action="" class="footer__form grid">
<input
type="email"
placeholder="Enter e-mail address"
class="footer__input"
/>
<button class="button footer__button" type="submit">
Subscribe <i class="ri-arrow-right-s-line"></i>
</button>
<p class="footer__description">
We Care about your data.Read our
<a href="#" class="footer__privacy">Privacy Policy</a>
</p>
</form>
</div>
<div class="footer__content grid">
<div class="footer__social">
<a
href="https://www.facebook.com/"
target="_blank"
class="footer__social-link"
>
<i class="ri-facebook-fill"></i>
</a>
<a
href="https://www.instagram.com/"
target="_blank"
class="footer__social-link"
>
<i class="ri-instagram-fill"></i>
</a>
<a
href="https://twitter.com/"
target="_blank"
class="footer__social-link"
>
<i class="ri-twitter-fill"></i>
</a>
</div>
<span class="footer__copy">
© Copyright Bedimcode. All rights reserved
</span>
</div>
</div>
</div>
</footer>
<!--========== SCROLL UP ==========-->
<a href="#" class="scrollup" id="scroll-up">
<i class="ri-arrow-up-line"></i>
</a>
<!--=============== SCROLLREVEAL ===============-->
<script src="./js/scrollreveal.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="./js/main.js"></script>
</body>
</html>