-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml-template.html
142 lines (134 loc) · 4.63 KB
/
html-template.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
<!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">
<span style="background-color: aqua">0</span>
</button>
<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">!page specific</div>
<main>
<section>!!!page specific</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>