-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
132 lines (122 loc) · 4.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Headphonic</title>
<script src="https://kit.fontawesome.com/88b18bb1d4.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<!--------------------------------------- PRELOADER --------------------------------------->
<div class="preloader">
<div class="loading">
<h2>Loading</h2>
<span></span>
<span></span>
<span></span>
</div>
</div>
<!--------------------------------------- HEADER --------------------------------------->
<header>
<!------- NAV ------->
<nav>
<div class="nav-container center">
<button class="menu-toggle-btn">
<i class="fas fa-bars"></i>
</button>
<div class="logo">
<span class="logo-item">
<i class="fas fa-headphones"></i>
</span>
<span>Headphonic</span>
</div>
<ul class="nav-menu">
<li><a href="./index.html">Home</a></li>
<li><a href="./products.html">Products</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./faq.html">FAQ</a></li>
</ul>
<div class="open-cart-btn-wrapper">
<a href="./cart.html" class="open-cart-btn">
<i class="fas fa-cart-plus"></i>
</a>
<span class="cart-items-counter"></span>
</div>
</div>
</nav>
<!------- HERO ------->
<section class="hero-slider">
<div class="slides"></div>
<div class="slider-controls">
<button class="left-slider-btn">
<i class="fas fa-chevron-circle-left"></i>
</button>
<button class="right-slider-btn">
<i class="fas fa-chevron-circle-right"></i>
</button>
</div>
<div class="slider-stages"></div>
</section>
</header>
<!--------------------------------------- SECTION FEATURED --------------------------------------->
<section class="section center">
<div class="title">
<h2><span>Featured</span></h2>
</div>
<div class="carousel-wrapper">
<div class="carousel"></div>
<div class="carousel-controls">
<button class="prev-slide-btn">
<i class="fas fa-chevron-left"></i>
</button>
<button class="next-slide-btn">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
<div class="carousel-stages"></div>
<div class="wrapper-center">
<a href="products.html" class="red btn">More products</a>
</div>
<div class="brands">
<img src="./images/brands/brand_1.png" alt="brand">
<img src="./images/brands/brand_2.svg" alt="brand">
<img src="./images/brands/brand_3.png" alt="brand">
<img src="./images/brands/brand_4.png" alt="brand">
<img src="./images/brands/brand_5.png" alt="brand">
<img src="./images/brands/brand_6.png" alt="brand">
</div>
</section>
<!--------------------------------------- FOOTER --------------------------------------->
<footer class="section">
<div class="center">
<div class="logo">
<span class="logo-item">
<i class="fas fa-headphones"></i>
</span>
<span>Headphonic</span>
</div>
<ul class="footer-menu">
<li><a href="./index.html">Home</a></li>
<li><a href="./products.html">Products</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./faq.html">FAQ</a></li>
</ul>
<a href="./cart.html" class="shopping-cart">
<i class="fas fa-shopping-cart"></i> Cart
<span class="cart-items-counter"></span>
</a>
<p>
© <span class="date"></span> Drazhin Ustin Project <br>
Email: zmagar91@qmail.com <br>
All rights are reserved
</p>
</div>
</footer>
<!--------------------------------------- SCRIPT --------------------------------------->
<script src="https://cdn.jsdelivr.net/npm/contentful@latest/dist/contentful.browser.min.js"></script>
<script type="module" src="./js/index.js"></script>
</body>
</html>