-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
268 lines (268 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>REVO</title>
<link rel="stylesheet" href="style.css" />
<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=Montserrat:wght@900&family=Nunito:ital,wght@0,400;0,600;0,700;1,300&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header class="header">
<div class="header__inner">
<img
class="header__logo"
src="./assets/images/revo_logo.png"
alt="logo"
/>
<h1 class="header__title">
YOUR <br />
<span class="title__word">PERSONALIZED</span> <br />
COFFEE
</h1>
</div>
<video
class="header__video"
controls
poster="./assets/images/image_video.png"
preload="none"
>
<source src="/" type="video/mp4" />
</video>
<aside class="header__aside">
<img
class="aside__basket"
src="./assets/images/icon_basket.png"
alt="white__basket"
/>
<nav class="header__nav">
<ul class="nav__links">
<li><a class="nav__link" href="">TRANG CHỦ</a></li>
<li><a class="nav__link" href="">COFFEE</a></li>
<li><a class="nav__link" href="">PHIN MẠ MÀU</a></li>
<li><a class="nav__link" href="">COMBO PHIN PHÊ</a></li>
<li><a class="nav__link" href="">GIFTSET</a></li>
<li><a class="nav__link" href="">LIÊN HỆ</a></li>
</ul>
</nav>
</aside>
</header>
<div class="about">
<div class="container">
<h3 class="about__suptitle">Your Personalized Coffee</h3>
<h2 class="about__title">COFFEE BUILD YOUR BASE</h2>
<div class="about__cards">
<div class="about__card">
<img class="card__image" src="./assets/images/pic1.png" />
<h4 class="card__title">Nguồn gốc</h4>
<p class="card__text">
Những hạt cà phê Arabica, Robusta đạt chất lượng theo tiêu chuẩn
quốc tế.
</p>
</div>
<div class="about__card">
<img class="card__image" src="./assets/images/pic2.png" />
<h4 class="card__title">Chất lượng</h4>
<p class="card__text">
Từng một hạt cà phê là cả một quá trình tập trung cao độ của nghệ
nhân cà phê.
</p>
</div>
<div class="about__card">
<img class="card__image" src="./assets/images/pic3.png" />
<h4 class="card__title">Các loại hạt</h4>
<p class="card__text">
70% chất lượng tách cà phê đến từ nguồn gốc và chất lượng green
bean.
</p>
</div>
<div class="about__card">
<img class="card__image" src="./assets/images/pic4.png" />
<h4 class="card__title">Pha chế</h4>
<p class="card__text">
Những hạt cà phê được lột xác qua quá trình rang xay kỹ lưỡng và
nghiêm ngặt.
</p>
</div>
</div>
</div>
</div>
<div class="products">
<h3 class="products__suptitle">Choose Your Favorite</h3>
<h2 class="products__title">CHUẨN GU ĐÚNG VỊ</h2>
<div class="products__list">
<div class="product__card">
<img class="product__image" src="./assets/images/prod1.png" alt="" />
<div class="product__info">
<h6 class="product__suptitle">99.000</h6>
<h5 class="product__title">REVO Morning</h5>
<p class="product__text">đắng, hậu ngọt, hương hoa</p>
<div class="product__btns">
<button class="btn__left">MUA NGAY</button>
<button class="btn__right">CHI TIẾT</button>
</div>
</div>
</div>
<div class="product__card">
<img class="product__image" src="./assets/images/prod2.png" alt="" />
<div class="product__info">
<h6 class="product__suptitle">139.000</h6>
<h5 class="product__title">REVO Origin</h5>
<p class="product__text">hậu ngọt, ít đắng, vị chua dâu</p>
<div class="product__btns">
<button class="btn__left">MUA NGAY</button>
<button class="btn__right">CHI TIẾT</button>
</div>
</div>
</div>
<div class="product__card">
<img class="product__image" src="./assets/images/prod3.png" alt="" />
<div class="product__info">
<h6 class="product__suptitle">85.000</h6>
<h5 class="product__title">REVO Everyday</h5>
<p class="product__text">cân bằng, hậu đắng, vị chocolate</p>
<div class="product__btns">
<button class="btn__left">MUA NGAY</button>
<button class="btn__right">CHI TIẾT</button>
</div>
</div>
</div>
<div class="product__card">
<img class="product__image" src="./assets/images/prod4.png" alt="" />
<div class="product__info">
<h6 class="product__suptitle">75.000</h6>
<h5 class="product__title">REVO Đậm Đà</h5>
<p class="product__text">đậm đà, đắng, truyền thống</p>
<div class="product__btns">
<button class="btn__left">MUA NGAY</button>
<button class="btn__right">CHI TIẾT</button>
</div>
</div>
</div>
</div>
</div>
<div class="giftsets">
<h3 class="giftsets__suptitle">Best Gift For Best Friend</h3>
<h2 class="giftsets__title">GIFTSET</h2>
<div class="giftset__card">
<img class="gift__image" src="./assets/images/gift.png" alt="" />
<div class="gift__info">
<h6 class="product__suptitle">285.000</h6>
<h5 class="product__title">Giftset "Cà phê phin Việt Nam"</h5>
<p class="product__text gift__product__text">
Món quà tuyệt vời dành cho người sành cà phê. Hạt cà phê được Revo
cẩn trọng chọn lựa, rang xay theo công nghệ và bí quyết học hỏi từ
những nghệ nhân nổi tiếng, cùng với tình yêu, sự đam mê của người
làm cà phê… tạo ra những tách cà phê tinh khiết chỉ dành riêng cho
bạn.
</p>
<div class="gift__character">
<div class="character">
<img
src="./assets/images/coffee_beans.png"
alt="coffee beans"
class="character__image"
/>
<div class="character__text">
<p class="character__title">Loại hạt</p>
<p class="character__subtitle">Fine Robusta Blend</p>
</div>
</div>
<div class="character">
<img
src="./assets/images/mountain.png"
alt="mountain"
class="character__image"
/>
<div class="character__text">
<p class="character__title">Độ cao</p>
<p class="character__subtitle">700 - 800m</p>
</div>
</div>
</div>
<div class="product__btns">
<button class="btn__left">MUA NGAY</button>
<button class="btn__right">CHI TIẾT</button>
</div>
</div>
<div class="numbers__gits">
<div class="number">1</div>
<div class="number">2</div>
<div class="number">3</div>
</div>
</div>
</div>
<div class="combo">
<h3 class="combo__suptitle">Your Personalized Coffee</h3>
<h2 class="combo__title">COMBO PHIN PHÊ</h2>
<div class="combo__cards">
<div class="combo__card">
<img
src="./assets/images/combo1.png"
alt="coffee"
class="combo__image"
/>
<div class="combo__info">
<h6 class="product__suptitle combo__prod">147.000</h6>
<h6 class="product__suptitle__old">155.000</h6>
<h5 class="product__title">Combo Revo Đậm Đà</h5>
<p class="product__text comb__text">
Hàm lượng caffein trong Revo Đậm Đà đủ mạnh để làm bạn tỉnh táo
làm việc...
</p>
<div class="product__btns">
<button class="btn__left">MUA NGAY</button>
<button class="btn__right">CHI TIẾT</button>
</div>
</div>
</div>
<div class="combo__card">
<img
src="./assets/images/combo2.png"
alt="coffee"
class="combo__image"
/>
<div class="combo__info">
<h6 class="product__suptitle combo__prod">156.000</h6>
<h6 class="product__suptitle__old">165.000</h6>
<h5 class="product__title">Combo Revo Everyday</h5>
<p class="product__text comb__text">
Revo Everyday được phối trộn giữa vị đắng của hạt Robusta và hương
thơm...
</p>
<div class="product__btns">
<button class="btn__left">MUA NGAY</button>
<button class="btn__right">CHI TIẾT</button>
</div>
</div>
</div>
<div class="combo__card">
<img
src="./assets/images/combo3.png"
alt="coffee"
class="combo__image"
/>
<div class="combo__info">
<h6 class="product__suptitle combo__prod">275.000</h6>
<h6 class="product__suptitle__old">260.000</h6>
<h5 class="product__title">Combo Revo Honey</h5>
<p class="product__text comb__text">
Honey – trong tên gọi Revo Honey đến từ phương pháp chế biến hạt
Arabica...
</p>
<div class="product__btns">
<button class="btn__left">MUA NGAY</button>
<button class="btn__right">CHI TIẾT</button>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">© Revo Coffee Việt Nam - 2018</footer>
</body>
</html>