-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (149 loc) · 5.23 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
<!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>Your Sound</title>
<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=Inter:wght@400;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<!-- #endregion -->
<body id="home">
<header class="header">
<div class="header__top">
<img src="img/Logo.png" alt="Bose Logo" class="logo">
<a href="#menu">
<img src="img/icons/Icon-Burger-menu.png" alt="Burger-menu.png">
</a>
</div>
<div class="header__bottom">
<img src="img/Sound waves.png" alt="Sound waves">
<h1 class="header__title">
The world shades.
<br>
Your music shines.
</h1>
</div>
</header>
<div class="menu" id="menu">
<div class="menu__top">
<img src="img/Logo.png" alt="Bose Logo" class="logo">
<a href="#home">
<img
src="img/icons/Icon-Close.png"
alt="Close"
>
</a>
</div>
<nav class="nav">
<a href="#home" class="nav__link">Home</a>
<a href="#recommended" class="nav__link">Recommended</a>
<a href="#categories" class="nav__link">Categories</a>
<a href="#how-to-buy" class="nav__link">How to buy</a>
</nav>
</div>
<main class="main">
<section class="recommended" id="recommended">
<h2 class="recommended__title">Recommended</h2>
<div class="recommended__products">
<article class="product">
<img
src="img/products/Bose portable Smart speaker.png"
alt="Bose portable Smart speaker"
class="product__photo"
>
<h3 class="product__title" >Bose portable Smart speaker</h3>
<p class="product__category">Smart home</p>
<p class="product__price">$ 399.00</p>
</article>
<article class="product">
<img
src="img/products/SoundLink Flex Bluetooth speaker.png"
alt="SoundLink Flex Bluetooth speaker"
class="product__photo"
>
<h3 class="product__title" >SoundLink Flex Bluetooth speaker</h3>
<p class="product__category">Portable bluetooth</p>
<p class="product__price">$ 149.00</p>
</article>
<article class="product">
<img
src="img/products/SoundLink Color Bluetooth speaker II.png"
alt="SoundLink Color Bluetooth speaker II"
class="product__photo"
>
<h3 class="product__title" >SoundLink Color Bluetooth speaker II</h3>
<p class="product__category">Portable bluetooth</p>
<p class="product__price">$ 129.00</p>
</article>
</div>
</section>
<section class="categories" id="categories">
<h2 class="categories__title">Browse Bose<br>products by category</h2>
<article class="category">
<div class="category__photos">
<img
src="img/categories/VectorHeadphones-earbuds-wide.png"
alt="Headphones & earbuds"
class="photo-wide"
>
<img
src="img/categories/Headphones-earbuds-square.png"
alt="Headphones & earbuds"
class="photo-square"
>
</div>
<h3 class="category__title">Headphones & earbuds</h3>
</article>
<article class="category">
<div class="category__photos">
<img
src="img/categories/Speakers-wide.png"
alt="Speakers"
class="photo-wide"
>
<img
src="img/categories/Speakers-square.png"
alt="Speakers"
class="photo-square"
>
</div>
<h3 class="category__title">Speakers</h3>
</article>
<article class="category">
<div class="category__photos">
<img
src="img/categories/Audio-sunglasses-square.png"
alt="Audio sunglasses"
class="photo-square"
>
<img
src="img/categories/Audio-sunglasses-wide.png"
alt="Audio sunglasses"
class="photo-wide"
>
</div>
<h3 class="category__title">Audio sunglasses</h3>
</article>
</section>
<section class="how-to-buy" id="how-to-buy">
<h2 class="how-to-buy__title">Why buy direct<br>from Bose</h2>
<div class="how-to-buy__content">
<ul class="how-to-buy__benefits">
<li>Free 2-day shipping and returns</li>
<li>90-day risk-free trial</li>
<li>World class customer service</li>
<li>My Bose account management</li>
</ul>
<p class="how-to-buy__description">
A great product is more than what’s in the box. It’s a promise of premium performance, world-class support, and everything you expect from a trusted brand. It’s just one of many reasons why you’ll shop with confidence on Bose.com.
</p>
</div>
</section>
</main>
<footer class="footer"></footer>
</body>
</html>