-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
441 lines (394 loc) · 12.3 KB
/
dashboard.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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bioumjan Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Placeholder cho nav -->
<div id="nav-placeholder"></div>
<!-- Script nạp file nav.html -->
<script>
fetch('nav.html') // Đường dẫn tới file nav.html
.then(response => response.text()) // Chuyển thành text
.then(data => {
document.getElementById('nav-placeholder').innerHTML = data; // Chèn nội dung vào placeholder
})
.catch(error => console.error('Error loading nav.html:', error));
</script>
<!-- Home Banner -->
<section class="home_banner">
<!-- Background Image -->
<div class="home_banner_image"></div>
<!-- Content Over Image -->
<div class="home_banner_content">
<div class="home_banner_text">
We believe in fueling your life with the best nutrients nature and science have to offer. To celebrate our commitment to your well-being.
</div>
<button class="home_banner_button">Start your wellness</button>
</div>
<div class="home_banner_title">
<h1>Rooted in real wellness made for you</h1>
</div>
</section>
<!-- Product Features -->
<section class="features">
<div class="features_collection">
BIOUMJAN’s COLLECTION
</div>
<div class="features_collection_2">
Your unique needs and support your journey
</div>
<div class="feature-cards">
<div class="card">
<img src="resource/home/feature_image_1.png">
<div class="card_title">
Boost
</div>
</div>
<div class="card">
<img src="resource/home/feature_image_2.png">
<div class="card_title">
Calm
</div>
</div>
<div class="card">
<img src="resource/home/feature_image_3.png">
<div class="card_title">
Glow
</div>
</div>
</div>
</section>
<!-- Centered Text Section -->
<section class="features">
<div class="features_collection">
BOSSA JANE, FOUNDER
</div>
<div class="features_collection_2">
Together, we can unlock the healing potential of nature and lead healthier, more vibrant lives.
</div>
</section>
<!-- Full Potential Section -->
<section class="full-potential">
<div class="content">
<div class="title">
KEY FEATURE
</div>
<div class="description">
Full potential with Bioumjan
</div>
<section class="features">
<div class="feature-item">
<div class="feature-icon">🌱</div>
<div class="feature-title">Scientifically formulate</div>
<div class="feature-description">
Every product is designed with the latest research to provide maximum benefits.
</div>
</div>
<div class="feature-item">
<div class="feature-icon">🌿</div>
<div class="feature-title">Eco friendly approach</div>
<div class="feature-description">
Using eco-friendly practices and ethically harvested components.
</div>
</div>
<div class="feature-item">
<div class="feature-icon">🌍</div>
<div class="feature-title">Conscious eco values</div>
<div class="feature-description">
Practices resonates with us those who care about a healthier planet.
</div>
</div>
<div class="feature-item">
<div class="feature-icon">✔️</div>
<div class="feature-title">Transparency and trust</div>
<div class="feature-description">
Ensuring that what goes into our products is pure and effective.
</div>
</div>
</section>
</div>
<img src="resource/home/full_potential.png" alt="Supplements with leaves">
</section>
<!-- Treat Yourself Section -->
<section class="treat-yourself">
<img src="resource/home/treat_yourself.png">
<div class="content">
<h2>Treat yourself to something truly</h2>
</div>
</section>
<!-- Footer -->
<div id="footer-placeholder"></div>
<!-- Script nạp file nav.html -->
<script>
fetch('footer.html') // Đường dẫn tới file nav.html
.then(response => response.text()) // Chuyển thành text
.then(data => {
document.getElementById('footer-placeholder').innerHTML = data; // Chèn nội dung vào placeholder
})
.catch(error => console.error('Error loading nav.html:', error));
</script>
</body>
</html>
<style>
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
/* General Styles */
body {
width: 100%;
line-height: 1.6;
color: #fff;
}
/* Hero Section */
.home_banner {
position: relative;
width: 100%;
height: 70vh; /* Chiều cao toàn màn hình */
overflow: hidden;
display: flex;
align-items: center;
}
/* Background Image */
.home_banner_image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('resource/home/home_banner.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: 1; /* Ảnh nằm dưới */
}
/* Content Layer */
.home_banner_content {
width: 50%;
position: absolute;
top: 50%;
left: 25%;
transform: translate(-50%, -50%);
text-align: center;
color: #fff; /* Màu chữ trắng */
z-index: 2; /* Đè lên ảnh nền */
}
/* Hero Title */
.home_banner_title {
font-size: 82px;
font-weight: 500;
font-family: Roboto;
margin: auto;
margin-bottom: 20px;
z-index: 2;
text-align: center;
color: #040610;
opacity: 0.75;
}
/* Hero Text */
.home_banner_text {
width: 30%;
margin: auto;
position: relative;
font-size: 18px;
font-weight: 400;
font-family: Roboto;
color: #FBFBFE;
line-height: 1.5;
}
/* Hero Button */
.home_banner_button {
background-color: #040610;
color: #fff;
padding: 12px 24px;
font-size: 16px;
font-weight: 600;
margin-top: 10px;
border: none;
border-radius: 28px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.home_banner_button:hover {
background-color: #333;
}
/* Features Section */
.features {
text-align: center;
padding: 40px 20px;
}
.features_collection {
font-size: 16px;
font-weight: normal;
font-family: Roboto;
margin-top: 10px;
color: #040610;
opacity: 0.75;
}
.features_collection_2 {
width: 30%;
font-size: 44px;
font-weight: bold;
font-family: Roboto;
margin: auto;
line-height: 1;
color: #040610;
opacity: 0.95;
}
.feature-cards {
width: 70%;
margin: auto;
display: flex;
justify-content: center;
gap: 20px;
margin-top: 30px;
}
.card {
position: relative;
overflow: hidden;
}
.card_title {
position: absolute;
color: white; /* Màu chữ */
font-size: 29px; /* Cỡ chữ */
font-weight: 600; /* Đậm chữ */
font-family: Roboto;
bottom: 20px; /* Cách đáy ảnh 20px */
left: 50%; /* Căn giữa theo chiều ngang */
transform: translateX(-50%); /* Dịch text về chính giữa */
color: black;
}
.card img {
max-width: 100%;
border-radius: 10px;
object-fit: cover; /* Ảnh tự động vừa khung */
display: block;
}
/* Full Potential Section */
.full-potential {
width: 90%;
margin: auto;
display: flex;
align-items: center;
background: #FCFFFA;
border-radius: 20px;
overflow: hidden;
}
.full-potential .content {
flex: 1;
}
.full-potential .content .title {
max-width: 80%;
margin: auto;
font-size: 16px;
font-weight: normal;
font-family: Roboto;
color: #040610;
opacity: 0.75;
}
.full-potential .content .description {
max-width: 80%;
margin: auto;
font-size: 44px;
font-weight: bold;
font-family: Roboto;
margin-top: 12px;
color: #040610;
opacity: 0.95;
}
.full-potential .content .features {
max-width: 80%;
margin: auto;
padding: 0px;
display: grid;
grid-template-columns: 1fr 1fr; /* 2 cột */
gap: 40px; /*Khoảng cách giữa các ô*/
}
.full-potential .content .feature-item {
display: flex;
width: 100%;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.full-potential .content .feature-item .feature-title {
display: flex;
width: 100%;
text-align: start;
font-family: Roboto;
font-size: 20px;
font-weight: bolder;
color: #040610;
opacity: 0.85;
}
.full-potential .content .feature-item .feature-description {
display: flex;
width: 100%;
text-align: start;
font-family: Roboto;
font-size: 18px;
font-weight: 400;
color: #040610;
opacity: 0.65;
}
.full-potential .content .feature-icon {
font-size: 32px; /* Kích thước icon */
color: #444;
}
.full-potential img {
flex: 1;
max-width: 50%;
}
/* Treat Yourself Section */
.treat-yourself {
position: relative;
width: 90%;
height: auto;
overflow: hidden;
margin: auto;
display: flex;
margin-top: 100px;
}
.treat-yourself img {
flex: 1;
max-width: 100%;
}
.treat-yourself .content {
width: 30%;
position: absolute;
bottom: 20px;
margin-right: 20px;
margin: auto;
display: flex;
justify-content: center;
left: 50%; /* Căn giữa theo chiều ngang */
transform: translateX(-50%); /* Dịch text về chính giữa */
color: black;
font-size: 54px;
font-weight: 500;
font-family: Roboto;
}
/* Footer */
footer {
background-color: #333;
color: #fff;
padding: 20px 40px;
}
.footer-content {
display: flex;
justify-content: space-between;
}
.footer-links ul {
list-style: none;
}
.footer-links li {
margin-bottom: 5px;
}
</style>