-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
665 lines (643 loc) · 28.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
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
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
<!DOCTYPE html>
<html>
<head>
<title> Wave Wears Landing Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font awesome, Owl carousel, Bootstrap, Main css, Responsive & default css -->
<link rel="stylesheet" href="css/fontawesome.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/skin.css">
</head>
<body>
<!-- Preloader Start -->
<div class="preloader">
<div class="loader">
</div>
</div>
<!-- Preloader End -->
<!-- Header Section Start -->
<header class="header fixed-top">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<!-- Brand -->
<a class="navbar-brand" href="#"> <span class="logo-circle"></span> Wave </a>
<!-- Toggler/collapsibe Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links -->
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link active" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#products">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#testimonial">Testimonial</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq">Faq</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!-- Header Section End -->
<!-- Home Section Start -->
<section class="home-section" id="home">
<div class="bg-shapes">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="home-content">
<h1>Present Your Awesome Product</h1>
<p>
The electronics watch is a revolutionary wearable device that combines style with advanced
technology to enhance the wearer's life. It features built-in WiFi and Bluetooth for connectivity,
health and fitness tracking features, and fun features such as smart home device control and
gaming. It's a must-have accessory for anyone who wants to stay connected, stay healthy, and have
some fun along the way.
</p>
<a href="#" class="btn mybtn1">Buy For $199</a>
</div>
</div>
<div class="col-lg-6 order-first order-lg-last">
<div class="home-img">
<img src="img/watch-01.png" alt="product">
</div>
</div>
</div>
</div>
</section>
<!-- Home Section End -->
<!-- About Section Start -->
<section class="about-section" id="about">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex">
<div class="about-img">
<img class="img-fluid" src="img/watch-02.jpg" alt="product">
</div>
</div>
<div class="col-lg-6 order-first order-lg-last">
<!-- Section Title Start -->
<div class="section-title">
<h1 class="title">About Product</h1>
<h2 class="subtitle">Awesome Watches Simplify Life.</h2>
</div>
<!-- Section Title End -->
<div class="about-content">
<p>Smartwatches have become increasingly popular due to the variety of benefits they offer. These
include built-in WiFi and Bluetooth capabilities, which allow users to stay connected to their
digital world without needing to use their phones.</p>
<ul class="list-unstyled">
<li><i class="fas fa-check"></i>Provides connectivity without needing to use a phone.</li>
<li><i class="fas fa-check"></i>Tracks health and fitness metrics for users.</li>
<li><i class="fas fa-check"></i>Provides entertainment and functionality with fun features.</li>
<li><i class="fas fa-check"></i>Offers convenience for controlling smart home devices.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- About Section End -->
<!-- Features Section Start -->
<section class="features-section bg-light" id="features">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7">
<!-- Section Title Start -->
<div class="section-title">
<h1 class="title">Features</h1>
<h2 class="subtitle">Some Of The Great Features.</h2>
</div>
<!-- Section Title Start End-->
</div>
</div>
<div class="row">
<!-- Features Item Start-->
<div class="col-md-6 col-lg-4 d-flex">
<div class="col-lg-12 features-item">
<div class="icon"><i class="fas fa-bell"></i></div>
<h3>Notification Alert</h3>
<p>They can include incoming calls, text messages, social media alerts, and app notifications.</p>
</div>
</div>
<!-- Features Item End-->
<!-- Features Item Start-->
<div class="col-md-6 col-lg-4 d-flex">
<div class="col-lg-12 features-item">
<div class="icon"><i class="fab fa-bluetooth"></i></div>
<h3>Bluetooth</h3>
<p>Our smartwatches have built-in Bluetooth capabilities, which allows them to connect to other
Bluetooth-enabled devices.
</p>
</p>
</div>
</div>
<!-- Features Item End-->
<!-- Features Item Start-->
<div class="col-md-6 col-lg-4 d-flex">
<div class="col-lg-12 features-item">
<div class="icon"><i class="fas fa-wifi"></i></div>
<h3>Support Wifi</h3>
<p>Our smartwatches has the ability to connect to WiFi networks, allowing the user to access the
internet and other online services directly from their watch.
</p>
</div>
</div>
<!-- Features Item End-->
<!-- Features Item Start-->
<div class="col-md-6 col-lg-4 d-flex">
<div class="col-lg-12 features-item">
<div class="icon"><i class="fas fa-map-marker-alt"></i></div>
<h3>GPS Tracking</h3>
<p>Our smartwatches has a built-in GPS sensor, which can be used to track the user's location and
movements.
</p>
</div>
</div>
<!-- Features Item End-->
<!-- Features Item Start-->
<div class="col-md-6 col-lg-4 d-flex">
<div class="col-lg-12 features-item">
<div class="icon"><i class="fas fa-comments"></i></div>
<h3>Live Chat</h3>
<p>Our smartwatches has the ability to support real-time messaging with other users. This feature can
be useful for staying in touch with friends or colleagues.
</p>
</div>
</div>
<!-- Features Item End-->
<!-- Features Item Start-->
<div class="col-md-6 col-lg-4 d-flex">
<div class="col-lg-12 features-item">
<div class="icon"><i class="fas fa-camera"></i></div>
<h3>Camera</h3>
<p>Our smartwatches has a built-in camera that can be used to take photos or videos directly from the
watch.</p>
</div>
</div>
<!-- Features Item End-->
</div>
</div>
</section>
<!-- Features Section End -->
<!-- Products Section Start -->
<section class="products-section" id="products">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7">
<!-- Section Title Start -->
<div class="section-title">
<h1 class="title">Our Products</h1>
<h2 class="subtitle">
We Have Lots Of Excellent & Top-notch Products.</h2>
</div>
<!-- Section Title End -->
</div>
</div>
<div class="row">
<div class="owl-carousel" id="product-carousel">
<!-- Products Item Start -->
<div class="col-lg-12">
<div class="products-item">
<div class="product-img">
<img class="img-fluid" src="img/products/1.jpg" alt="product">
<div class="overlay d-flex">
<a href="#" class="btn mybtn1">Buy Now</a>
</div>
</div>
<div class="product-content">
<div class="product-price">
<span class="new-price">$49</span>
<span class="old-price">$99</span>
</div>
<h5 class="product-name">Stainless Steal Men</h5>
</div>
</div>
</div>
<!-- Products Item End -->
<!-- Products Item Start -->
<div class="col-lg-12">
<div class="products-item">
<div class="product-img">
<img class="img-fluid" src="img/products/2.jpg" alt="product">
<div class="overlay d-flex">
<a href="#" class="btn mybtn1">Buy Now</a>
</div>
</div>
<div class="product-content">
<div class="product-price">
<span class="new-price">$49</span>
<span class="old-price">$99</span>
</div>
<h5 class="product-name">Waterproof Sport</h5>
</div>
</div>
</div>
<!-- Products Item End -->
<!-- Products Item Start -->
<div class="col-lg-12">
<div class="products-item">
<div class="product-img">
<img class="img-fluid" src="img/products/3.jpg" alt="product">
<div class="overlay d-flex">
<a href="#" class="btn mybtn1">Buy Now</a>
</div>
</div>
<div class="product-content">
<div class="product-price">
<span class="new-price">$49</span>
<span class="old-price">$99</span>
</div>
<h5 class="product-name">Timex Easy Reader</h5>
</div>
</div>
</div>
<!-- Products Item End -->
<!-- Products Item Start -->
<div class="col-lg-12">
<div class="products-item">
<div class="product-img">
<img class="img-fluid" src="img/products/4.jpg" alt="product">
<div class="overlay d-flex">
<a href="#" class="btn mybtn1">Buy Now</a>
</div>
</div>
<div class="product-content">
<div class="product-price">
<span class="new-price">$49</span>
<span class="old-price">$99</span>
</div>
<h5 class="product-name">Timex Expedition</h5>
</div>
</div>
</div>
<!-- Products Item End -->
<!-- Products Item Start -->
<div class="col-lg-12">
<div class="products-item">
<div class="product-img">
<img class="img-fluid" src="img/products/5.jpg" alt="product">
<div class="overlay d-flex">
<a href="#" class="btn mybtn1">Buy Now</a>
</div>
</div>
<div class="product-content">
<div class="product-price">
<span class="new-price">$49</span>
<span class="old-price">$99</span>
</div>
<h5 class="product-name">Waterproof Sport Pro</h5>
</div>
</div>
</div>
<!-- Products Item End -->
</div>
</div>
</div>
</section>
<!-- Products Section End -->
<!-- Testimonial Section Start -->
<section class="testimonial-section" id="testimonial">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7">
<!-- Section Title Start -->
<div class="section-title">
<h1 class="title">Testimonial</h1>
<h2 class="subtitle">Our Satisfied Customers Feedbacks.</h2>
</div>
<!-- Section Title End -->
</div>
</div>
<div class="row">
<div class="owl-carousel" id="testimonial-carousel">
<!-- Testi item start -->
<div class="col-lg-12">
<div class="testi-item">
<div class="testi-comment">
<p>
<i class="fas fa-quote-left"></i>
I just purchased a smartwatch from this boutique and I have to say, it has exceeded my
expectations.
<i class="fas fa-quote-right"></i>
</p>
<ul class="stars list-unstyled">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star-half-alt"></i></li>
<li><i class="far fa-star"></i></li>
</ul>
</div>
<div class="client-info">
<img src="img/testimonial/1.jpg" alt="testimonial">
<h5>Tolshi Mbau</h5>
<p>Customer at Wave Wears</p>
</div>
</div>
</div>
<!-- Testi item End -->
<!-- Testi item start -->
<div class="col-lg-12">
<div class="testi-item">
<div class="testi-comment">
<p>
<i class="fas fa-quote-left"></i>
I've been a loyal customer of this smartwatch boutique for years now, and I have to say, they
just keep getting better and better.
<i class="fas fa-quote-right"></i>
</p>
<ul class="stars list-unstyled">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star-half-alt"></i></li>
<li><i class="far fa-star"></i></li>
</ul>
</div>
<div class="client-info">
<img src="img/testimonial/2.jpg" alt="testimonial">
<h5>Piya Kopra</h5>
<p>Customer at Wave Wears</p>
</div>
</div>
</div>
<!-- Testi item End -->
<!-- Testi item start -->
<div class="col-lg-12">
<div class="testi-item">
<div class="testi-comment">
<p>
<i class="fas fa-quote-left"></i>
Overall, I'm very impressed with the quality of the watch and the level of customer service I
received at this boutique.
<i class="fas fa-quote-right"></i>
</p>
<ul class="stars list-unstyled">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star-half-alt"></i></li>
<li><i class="far fa-star"></i></li>
</ul>
</div>
<div class="client-info">
<img src="img/testimonial/3.jpg" alt="testimonial">
<h5>Joseph Brooke</h5>
<p>Customer at Wave Wears</p>
</div>
</div>
</div>
<!-- Testi item End -->
</div>
</div>
</div>
</section>
<!-- Testimonial Section End -->
<!-- Faq Section Start -->
<section class="faq-section" id="faq">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7">
<!-- Section Title Start -->
<div class="section-title">
<h1 class="title">Faq</h1>
<h2 class="subtitle">Frequently Asked Questions</h2>
</div>
<!-- Section Title End -->
</div>
</div>
<div class="row">
<!-- Faq Item Start -->
<div class="col-md-6">
<div class="faq-item">
<h4>What types of watches do you sell?</h4>
<p>Our watch boutique sells a variety of watches, including dress watches, sports watches, luxury
watches, and casual watches.</p>
</div>
</div>
<!-- Faq Item End -->
<!-- Faq Item Start -->
<div class="col-md-6">
<div class="faq-item">
<h4>What materials are your watches made of?</h4>
<p>Our watches are made from a variety of materials, including stainless steel, leather, gold, and
titanium.</p>
</div>
</div>
<!-- Faq Item End -->
<!-- Faq Item Start -->
<div class="col-md-6">
<div class="faq-item">
<h4>How do I choose the right size watch for my wrist?</h4>
<p>The size of the watch should be proportional to the size of your wrist. A general rule of thumb is
that the watch should not extend beyond the edge of your wrist bone.</p>
</div>
</div>
<!-- Faq Item End -->
<!-- Faq Item Start -->
<div class="col-md-6">
<div class="faq-item">
<h4>Do you offer watch repair services?</h4>
<p> Yes, we offer watch repair services. Our experienced watchmakers can service and repair most types
of watches, including battery replacement & more.</p>
</div>
</div>
<!-- Faq Item End -->
<!-- Faq Item Start -->
<div class="col-md-6">
<div class="faq-item">
<h4>Do you offer a warranty on your watches?</h4>
<p>Yes, we offer a warranty on all of our watches. The length and terms of the warranty vary depending
on the brand and model of the watch.</p>
</div>
</div>
<!-- Faq Item End -->
<!-- Faq Item Start -->
<div class="col-md-6">
<div class="faq-item">
<h4>Can I order a watch online?</h4>
<p>Yes, you can order a watch from our online store. We offer free shipping and easy returns on all
orders.</p>
</div>
</div>
<!-- Faq Item End -->
<div class="col-lg-12">
<p class="support-text text-center">Any Question <a href="#">info@wavewears.com</a></p>
</div>
</div>
</div>
</section>
<!-- Faq Section End -->
<!-- Newsletter Section Start -->
<section class="newsletter-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7">
<!-- Section Title Start -->
<div class="section-title">
<h1 class="title">Newsletter</h1>
<h2 class="subtitle">Subscribe To Get Updates</h2>
</div>
<!-- Section Title End -->
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-10 col-lg-7">
<form class="newsletter-form">
<div class="form-group">
<input type="text" class="form-control" placeholder="Enter Your Mail">
</div>
<button type="submit" class="btn mybtn2">
<span> Subscribe</span>
<i class="far fa-paper-plane"></i>
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Newsletter Section End -->
<!-- Contact Section Start -->
<section class="contact-section" id="contact">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7">
<!-- Section Title Start -->
<div class="section-title">
<h1 class="title">Contact us</h1>
<h2 class="subtitle">Get In Touch With Us.</h2>
</div>
<!-- Section Title End -->
</div>
</div>
<div class="row">
<div class="col-md-7">
<form class="contact-form">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Your Name">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Your Email">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<input type="text" class="form-control" placeholder="Subject">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<textarea class="form-control" placeholder="Message"></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<button type="submit" class="btn mybtn2">Send Message</button>
</div>
</div>
</form>
</div>
<div class="col-md-5 order-first order-md-last">
<!-- Contact Item Start -->
<div class="contact-item">
<div class="icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<h5>Location</h5>
<p>Oslo, Norway</p>
</div>
<!-- Contact Item End -->
<!-- Contact Item Start -->
<div class="contact-item">
<div class="icon">
<i class="fas fa-envelope"></i>
</div>
<h5>Email</h5>
<p>info@wavewears.com</p>
</div>
<!-- Contact Item End -->
<!-- Contact Item Start -->
<div class="contact-item">
<div class="icon">
<i class="fas fa-phone"></i>
</div>
<h5>Call us on</h5>
<p>+47 987 679 00</p>
</div>
<!-- Contact Item End -->
</div>
</div>
</div>
</section>
<!-- Contact Section End -->
<!-- Footer Section Start -->
<footer class="footer">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="footer-logo">
<a href="#"><span class="logo-circle"></span> Wave Wears</a>
</div>
<div class="footer-text">
<p>For More Than Ten Years, We Have Been Engaged In The Sale Of Exceptional & High-quality electronic
watches.
</p>
</div>
<div class="footer-social-links">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
</div>
<div class="copyright">
<p>Copyright © The Wave Wears 2023</p>
</div>
</footer>
<!-- Footer Section End -->
<!-- Jquery, Popper, Bootsrap, Owl Carousel, Main Js -->
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>