-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheadphones.html
215 lines (203 loc) · 7.37 KB
/
headphones.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<title>Frontend Mentor | Audiophile e-commerce website</title>
</head>
<body>
<div class="container">
<header>
<button
class="toggle-button"
aria-label="toggle button"
onclick="toggleBtn()"
></button>
<a href="index.html">
<img
class="header-logo"
src="/assets/shared/desktop/logo.svg"
alt="company logo"
/></a>
<nav class="subtitle" id="desktop-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="headphones.html">Headphones</a></li>
<li><a href="speakers.html">Speakers</a></li>
<li><a href="earphones.html">Earphones</a></li>
</ul>
</nav>
<button class="cart-button" id="top-cart-button">
<span class="count-products-cart-nav">0</span>
</button>
<div class="cart-modal cart-content cart-content-hide">
<div class="cart-header">
<h6>Cart(<span class="count-products-cart">0</span>)</h6>
<a class="clear-storage-button">Remove all</a>
</div>
<div class="user-products"></div>
<div class="cart-total">
<p class="subtitle">Total</p>
<p class="total-price">0</p>
</div>
<a class="myButton button-warm checkout-button" href="/checkout.html"
>Checkout</a
>
</div>
<nav class="menu" id="mobile-menu">
<div class="headphones">
<h6>Headphones</h6>
<a href="headphones.html" class="subtitle">Shop</a>
</div>
<div class="speakers">
<h6>Speakers</h6>
<a href="speakers.html" class="subtitle">Shop</a>
</div>
<div class="earphones">
<h6>Earphones</h6>
<a href="earphones.html" class="subtitle">Shop</a>
</div>
</nav>
</header>
<div class="hero hero-products"><h1>Headphones</h1></div>
<main>
<section>
<div class="card card-headphones card-top">
<div class="card-image"></div>
<div class="card-text">
<p class="overline">New product</p>
<h2>XX99 Mark II Headphones</h2>
<p>
The new XX99 Mark II headphones is the pinnacle of pristine
audio. It redefines your premium headphone experience by
reproducing the balanced depth and precision of studio-quality
sound.
</p>
<a
class="myButton button-warm"
href="/product-xx99-mark-two-headphones.html"
>See product</a
>
</div>
</div>
<div class="card card-headphones card-middle card-reverse">
<div class="card-image"></div>
<div class="card-text">
<p class="overline">New product</p>
<h2>XX99 Mark I Headphones</h2>
<p>
As the gold standard for headphones, the classic XX99 Mark I
offers detailed and accurate audio reproduction for audiophiles,
mixing engineers, and music aficionados alike in studios and on
the go.
</p>
<a
class="myButton button-warm"
href="/product-xx99-mark-one-headphones.html"
>See product</a
>
</div>
</div>
<div class="card card-headphones card-bottom">
<div class="card-image"></div>
<div class="card-text">
<p class="overline">New product</p>
<h2>XX59 Headphones</h2>
<p>
Enjoy your audio almost anywhere and customize it to your
specific tastes with the XX59 headphones. The stylish yet
durable versatile wireless headset is a brilliant companion at
home or on the move.
</p>
<a
class="myButton button-warm"
href="/product-xx59-headphones.html"
>See product</a
>
</div>
</div>
</section>
<section class="category">
<div class="headphones">
<h6>Headphones</h6>
<a href="headphones.html" class="subtitle">Shop</a>
</div>
<div class="speakers">
<h6>Speakers</h6>
<a href="speakers.html" class="subtitle">Shop</a>
</div>
<div class="earphones">
<h6>Earphones</h6>
<a href="earphones.html" class="subtitle">Shop</a>
</div>
</section>
<section class="about">
<div class="image"></div>
<div class="text">
<h2>Bringing you the <span>best</span> audio gear</h2>
<p>
Located at the heart of New York City, Audiophile is the premier
store for high end headphones, earphones, speakers, and audio
accessories. We have a large showroom and luxury demonstration
rooms available for you to browse and experience a wide range of
our products. Stop by our store to meet some of the fantastic
people who make Audiophile the best place to buy your portable
audio equipment.
</p>
</div>
</section>
</main>
<footer>
<div class="footer-logo">
<img src="/assets/shared/desktop/logo.svg" alt="company logo" />
</div>
<nav class="subtitle footer-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="headphones.html">Headphones</a></li>
<li><a href="speakers.html">Speakers</a></li>
<li><a href="earphones.html">Earphones</a></li>
</ul>
</nav>
<p class="footer-text">
Audiophile is an all in one stop to fulfill your audio needs. We're a
small team of music lovers and sound specialists who are devoted to
helping you get the most out of personal audio. Come and visit our
demo facility - we’re open 7 days a week.
</p>
<p class="footer-copyright">Copyright 2021. All Rights Reserved</p>
<div class="footer-social">
<a href="#"
><img
src="/assets/shared/desktop/icon-facebook.svg"
alt="facebook icon"
/></a>
<a href="#"
><img
src="/assets/shared/desktop/icon-twitter.svg"
alt="twitter icon"
/></a>
<a href="#"
><img
src="/assets/shared/desktop/icon-instagram.svg"
alt="instagram icon"
/></a>
</div>
</footer>
</div>
<script type="module" src="cart.js"></script>
<script src="scripts.js"></script>
</body>
</html>