-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
630 lines (601 loc) · 22.7 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
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Biker Zone</title>
<!-- Tailwind + DaisyUI cdn -->
<link
href="https://cdn.jsdelivr.net/npm/daisyui@4.12.10/dist/full.min.css"
rel="stylesheet"
type="text/css"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
clifford: "#da373d",
colorPrimary: "#E76F51",
colorSecondary: "#6C6C6C",
colorPrimaryBg: "rgba(231, 111, 81, 0.1)",
},
},
},
};
</script>
<!-- Font cdn -->
<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:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<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=Manrope:wght@200..800&display=swap"
rel="stylesheet"
/>
<style>
.font-poppins {
font-family: "Poppins", sans-serif;
}
.font-manrope {
font-family: "Manrope", sans-serif;
}
</style>
</head>
<body class="font-poppins">
<!-- Header Section -->
<header class="md:container md:mx-auto">
<nav class="py-12">
<div class="navbar bg-base-100">
<div class="flex-1">
<div class="dropdown">
<div tabindex="0" role="button" class="btn btn-ghost lg:hidden">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 6h16M4 12h8m-8 6h16"
/>
</svg>
</div>
<ul
tabindex="0"
class="menu menu-sm dropdown-content bg-base-100 rounded-box z-[1] mt-3 w-52 p-2 shadow"
>
<li><a>Home</a></li>
<li><a>Shop</a></li>
<li><a>News</a></li>
<li><a>Contact</a></li>
</ul>
</div>
<a href="./more.html" class="font-bold text-xl">BikerZone</a>
</div>
<div class="navbar-center hidden lg:flex">
<ul class="menu menu-horizontal px-1">
<li><a>Home</a></li>
<li><a>Shop</a></li>
<li><a>News</a></li>
<li><a>Contact</a></li>
</ul>
</div>
<div class="">
<a class="btn bg-colorPrimary text-white">Login</a>
</div>
</div>
</nav>
<!-- Caruousel -->
<div class="carousel w-full lg:h-[550px] bg-colorPrimaryBg rounded-md">
<!-- Slide 1 -->
<div id="slide1" class="carousel-item relative w-full">
<div class="flex flex-col lg:flex-row p-12 lg:p-[104px]">
<!-- text content -->
<div class="flex-1">
<h2 class="text-6xl font-bold leading-[75px]">
Ride-on R15 V4 with Smile
</h2>
<p class="mt-5 mb-[30px] text-base font-light leading-[26px]">
Amet minim mollit non deserunt ullamco est sit aliqua dolor do
amet sint. Velit officia consequat duis enim velit mollit.
</p>
<button class="btn bg-colorPrimary text-white">Purchase</button>
</div>
<!-- image content -->
<div class="flex-1">
<img src="images/slider/bike1.png" class="w-[406px]" />
</div>
</div>
<div
class="absolute left-5 right-5 top-1/2 flex -translate-y-1/2 transform justify-between"
>
<a href="#slide3" class="btn btn-circle">❮</a>
<a href="#slide2" class="btn btn-circle">❯</a>
</div>
</div>
<!-- Slide 2 -->
<div id="slide2" class="carousel-item relative w-full">
<div class="flex flex-col lg:flex-row p-12 lg:p-[104px]">
<!-- text content -->
<div class="flex-1">
<h2 class="text-6xl font-bold leading-[75px]">
Ride-on R15 V4 with Smile
</h2>
<p class="mt-5 mb-[30px] text-base font-light leading-[26px]">
Amet minim mollit non deserunt ullamco est sit aliqua dolor do
amet sint. Velit officia consequat duis enim velit mollit.
</p>
<button class="btn bg-colorPrimary text-white">Purchase</button>
</div>
<!-- image content -->
<div class="flex-1">
<img src="images/slider/bike2.png" class="w-[406px]" />
</div>
</div>
<div
class="absolute left-5 right-5 top-1/2 flex -translate-y-1/2 transform justify-between"
>
<a href="#slide1" class="btn btn-circle">❮</a>
<a href="#slide3" class="btn btn-circle">❯</a>
</div>
</div>
<!-- Slide 3 -->
<div id="slide3" class="carousel-item relative w-full">
<div class="flex flex-col lg:flex-row p-12 lg:p-[104px]">
<!-- text content -->
<div class="flex-1">
<h2 class="text-6xl font-bold leading-[75px]">
Ride-on R15 V4 with Smile
</h2>
<p class="mt-5 mb-[30px] text-base font-light leading-[26px]">
Amet minim mollit non deserunt ullamco est sit aliqua dolor do
amet sint. Velit officia consequat duis enim velit mollit.
</p>
<button class="btn bg-colorPrimary text-white">Purchase</button>
</div>
<!-- image content -->
<div class="flex-1">
<img src="images/slider/bike3.png" class="w-[406px]" />
</div>
</div>
<div
class="absolute left-5 right-5 top-1/2 flex -translate-y-1/2 transform justify-between"
>
<a href="#slide2" class="btn btn-circle">❮</a>
<a href="#slide1" class="btn btn-circle">❯</a>
</div>
</div>
</div>
</header>
<!-- Main Section -->
<main class="md:container md:mx-auto">
<!-- Featured Section -->
<section class="my-32">
<h3 class="text-5xl font-semibold text-center">
Fetured Bikes In This Year
</h3>
<h6 class="text-center text-colorPrimary font-semibold text-sm mt-6">
Best bike collection <br />
<hr class="w-14 inline-flex border-colorPrimary" />
</h6>
<!-- Image Container -->
<div
class="grid grid-cols-1 gap-8 md:grid-cols-3 place-items-center mt-12"
>
<img
class="filter grayscale md:h-60"
src="images/others/feature-bike-2.png"
alt=""
/>
<img class=" md:h-60" src="images/others/feature-bike.png" alt="" />
<img
class=" md:h-60"
src="images/others/feature-bike-2.png"
alt=""
/>
</div>
</section>
<!-- Latest Bike Section -->
<section class="my-32">
<h3 class="text-5xl font-semibold text-center mb-12">Latest News</h3>
<!-- Cards -->
<div
class="grid grid-cols-1 gap-12 md:grid-cols-2 lg:grid-cols-3 place-items-center"
>
<!-- Card 1 -->
<div
class="card card-compact bg-base-100 w-80 md:w-96 shadow-xl border rounded-md"
>
<figure class="pt-5 px-5">
<img src="images/others/latest1.png" alt="Shoes" />
</figure>
<div class="card-body">
<h2 class="card-title mt-6">Ducati XDIAVEL S-73</h2>
<p
class="text-colorSecondary text-base font-normal leading-8 mt-[10px] mb-6"
>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lacus,
fermentum amet faucibus sed id nisi lectus at.
</p>
<div class="card-actions">
<button class="btn btn-outline text-colorPrimary">
Read More
</button>
</div>
</div>
</div>
<!-- Card 2 -->
<div
class="card card-compact bg-base-100 w-80 md:w-96 shadow-xl border rounded-md"
>
<figure class="pt-5 px-5">
<img src="images/others/latest2.png" alt="Shoes" />
</figure>
<div class="card-body">
<h2 class="card-title mt-6">Motorcycles & Scooters</h2>
<p
class="text-colorSecondary text-base font-normal leading-8 mt-[10px] mb-6"
>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lacus,
fermentum amet faucibus sed id nisi lectus at.
</p>
<div class="card-actions">
<button class="btn btn-outline text-colorPrimary">
Read More
</button>
</div>
</div>
</div>
<!-- Card 3 -->
<div
class="card card-compact bg-base-100 w-80 md:w-96 shadow-xl border rounded-md"
>
<figure class="pt-5 px-5">
<img src="images/others/latest3.png" alt="Shoes" />
</figure>
<div class="card-body">
<h2 class="card-title mt-6">2021 Honda CBR500R</h2>
<p
class="text-colorSecondary text-base font-normal leading-8 mt-[10px] mb-6"
>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lacus,
fermentum amet faucibus sed id nisi lectus at.
</p>
<div class="card-actions">
<button class="btn btn-outline text-colorPrimary">
Read More
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Happy Client Section -->
<section class="my-32">
<div>
<h3 class="text-center text-5xl font-semibold mb-12">
Happy <span class="text-colorPrimary">Clients says</span>
</h3>
<!-- Card Container -->
<div
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-11 place-items-center"
>
<!-- Card-1 -->
<div class="card bg-base-100 w-80 md:w-96 shadow-md border rounded">
<figure class="pt-10">
<div class="avatar">
<div class="w-24 rounded-full">
<img src="images/others/user-1.png" />
</div>
</div>
</figure>
<div class="card-body items-center text-center">
<p
class="text-base font-normal leading-[26px] text-colorSecondary px-4"
>
Slate helps you see how many more days you need to work to
reach your financial goal for the month and year.
</p>
<!-- Rating -->
<div class="rating mt-[15px]">
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
checked="checked"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
checked="checked"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
checked="checked"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
/>
</div>
<h2
class="card-title text-[#23A6F0] text-sm font-semibold my-[15px]"
>
Regina Miles
</h2>
<small class="text-sm font-semibold">Banker</small>
</div>
</div>
<!-- Card-2 -->
<div class="card bg-base-100 w-80 md:w-96 shadow-md border rounded">
<figure class="pt-10">
<div class="avatar">
<div class="w-24 rounded-full">
<img src="images/others/user-2.png" />
</div>
</div>
</figure>
<div class="card-body items-center text-center">
<p
class="text-base font-normal leading-[26px] text-colorSecondary px-4"
>
Slate helps you see how many more days you need to work to
reach your financial goal for the month and year.
</p>
<!-- Rating -->
<div class="rating mt-[15px]">
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
checked="checked"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
checked="checked"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
checked="checked"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
/>
</div>
<h2
class="card-title text-[#23A6F0] text-sm font-semibold my-[15px]"
>
Regina Miles
</h2>
<small class="text-sm font-semibold">Banker</small>
</div>
</div>
<!-- Card-3 -->
<div class="card bg-base-100 w-80 md:w-96shadow-md border rounded">
<figure class="pt-10">
<div class="avatar">
<div class="w-24 rounded-full">
<img src="images/others/user-3.png" />
</div>
</div>
</figure>
<div class="card-body items-center text-center">
<p
class="text-base font-normal leading-[26px] text-colorSecondary px-4"
>
Slate helps you see how many more days you need to work to
reach your financial goal for the month and year.
</p>
<!-- Rating -->
<div class="rating mt-[15px]">
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
checked="checked"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
checked="checked"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
checked="checked"
/>
<input
type="radio"
name="rating-2"
class="mask mask-star-2 bg-orange-400"
/>
</div>
<h2
class="card-title text-[#23A6F0] text-sm font-semibold my-[15px]"
>
Regina Miles
</h2>
<small class="text-sm font-semibold">Banker</small>
</div>
</div>
</div>
</div>
</section>
<!-- Frequently Asked Questions -->
<section class="mb-32 p-1">
<h3 class="text-center text-5xl font-semibold mb-12 leading-normal">
Frequently Asked <span class="text-colorPrimary">Questions</span>
</h3>
<!-- hero container -->
<div class="hero">
<div class="hero-content flex-col lg:flex-row gap-2 md:gap-24">
<!-- faq image -->
<img src="images/others/faq.png" class="mb-12" />
<!-- faq container -->
<div>
<!-- accordion -->
<div class="collapse collapse-arrow border rounded-md mb-7">
<input type="radio" name="my-accordion-2" checked="checked" />
<div class="collapse-title text-xl font-medium">
What are the most important things I should know about riding
a bike?
</div>
<div class="collapse-content">
<p
class="text-colorSecondary text-base leading-7 font-regular"
>
Safety First! Always obey the rules of the road. Obey all
traffic signals, signs, and laws. Get in the mindset of
“driving” your bike—not just “riding” your bike. This will
help you be a more focused and legally compliant bike rider.
</p>
</div>
</div>
<div class="collapse collapse-arrow border rounded-md mb-7">
<input type="radio" name="my-accordion-2" />
<div class="collapse-title text-xl font-medium">
How can I tell if my helmet is old and I need a new one?
</div>
<div class="collapse-content">
<p
class="text-colorSecondary text-base leading-7 font-regular"
>
Amet consectetur, adipisicing elit. Cumque harum libero
voluptas provident, non perspiciatis dolor natus aut
debitis. Magnam.
</p>
</div>
</div>
<div class="collapse collapse-arrow border rounded-md mb-7">
<input type="radio" name="my-accordion-2" />
<div class="collapse-title text-xl font-medium">
My bike has been in storage is it safe to ride?
</div>
<div class="collapse-content">
<p
class="text-colorSecondary text-base leading-7 font-regular"
>
Ipsum dolor sit amet consectetur adipisicing elit.
Obcaecati, rerum!
</p>
</div>
</div>
<div class="collapse collapse-arrow border rounded-md">
<input type="radio" name="my-accordion-2" />
<div class="collapse-title text-xl font-medium">
What rules should I follow when riding my bike?
</div>
<div class="collapse-content">
<p
class="text-colorSecondary text-base leading-7 font-regular"
>
Dolor sit amet consectetur adipisicing elit. Quis
exercitationem eos, accusamus velit earum sit neque minus
ullam itaque consectetur cumque veritatis molestiae autem
culpa blanditiis quae dolorum deserunt a?
</p>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Footer Section -->
<footer class="bg-[#0B0D17]">
<div
class="md:container md:mx-auto flex flex-col justify-between px-6 md:px-0 py-20 sm:flex-row"
>
<aside class="flex flex-col">
<div class="inline-flex gap-6">
<a class="text-base font-normal font-manrope text-white" href=""
>Download Now</a
>
<a class="text-base font-normal font-manrope text-white" href=""
>License</a
>
</div>
<div
class="inline-flex flex-col md:flex-row gap-6 my-5 md:mt-3 md:mb-6"
>
<a class="text-base font-normal font-manrope text-white" href=""
>About</a
>
<a class="text-base font-normal font-manrope text-white" href=""
>Features</a
>
<a class="text-base font-normal font-manrope text-white" href=""
>Pricing</a
>
<a class="text-base font-normal font-manrope text-white" href=""
>Careers</a
>
<a class="text-base font-normal font-manrope text-white" href=""
>Help</a
>
<a class="text-base font-normal font-manrope text-white" href=""
>Privacy Policy</a
>
</div>
<div>
<p class="text-sm font-normal font-manrope text-white my-5 md:my-0">
© 2024 BikerZone. All Rights Reserved.
</p>
</div>
</aside>
<nav>
<h6
class="text-base font-normal font-manrope text-white mt-8 mb-3 md:mt-0"
>
Get the App
</h6>
<div class="grid grid-cols-1 gap-4 cursor-pointer">
<a>
<img class="w-[135px]" src="images/others/ios.png" alt="" />
</a>
<a>
<img class="w-[135px]" src="images/others/android.png" alt="" />
</a>
</div>
</nav>
</div>
</footer>
</body>
</html>