-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
179 lines (170 loc) · 5.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Headphone Landing Page</title>
<link rel="icon" href="img/logo.png" type="image/x-icon" />
<link rel="stylesheet" href="styles.css" />
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body>
<div class="main">
<header>
<div class="nav container">
<a href="#" class="logo">
<img src="img/logo.png" alt="logo" />
<i class="bx bx-menu" id="menu-icon"></i>
<ul class="navbar">
<li><a href="#home">Home</a></li>
<li><a href="#specs">Specs</a></li>
<li><a href="#shop">Shop</a></li>
<li><a href="#buds">Buds</a></li>
</ul>
</a>
</div>
</header>
<section class="home" id="home">
<div class="home-content container">
<div class="home-img">
<img src="img/home.png" alt="home" />
</div>
<div class="home-text">
<h1>Beats Solo 3</h1>
<p>
Beats Studio3 Wireless over-ear headphones delivers premium sound
while blocking external noise with Active Noise Cancelling.
</p>
<a
href="https://www.beatsbydre.com/es/headphones/solo3-wireless"
class="btn"
>
<i class="bx bx-shopping-bag"></i>
<span>Add To Bag</span>
</a>
</div>
</div>
</section>
<section class="specs" id="specs">
<h1 class="heading">Specs</h1>
<div class="specs-container container">
<div class="specs-details">
<div class="box">
<i class="bx bxs-battery-charging"></i>
<h3>Up to 22 hours of listening time</h3>
<p>
Long-term confort is matched by a battery life of 22 hours, and
40 hours of playback when Noise Cancelling is turned off.
</p>
</div>
<div class="box">
<i class="bx bx-headphone"></i>
<h3>Block external noise</h3>
<p>
noise Cancelling continually pinpoints externals sounds to block
while automatically responding to individual fit and music
playback
</p>
</div>
</div>
<div class="specs-img">
<img src="img/specs.png" alt="specs" />
</div>
</div>
</section>
<section class="shop" id="shop">
<h2 class="heading">Shop now</h2>
<div class="shop-container container">
<div class="box">
<img src="img/shop1.png" alt="shop1" />
<h3>Beats Solo</h3>
<span>$300</span>
<i class="bx bx-shopping-bag"></i>
</div>
<div class="box">
<img src="img/shop2.png" alt="shop2" />
<h3>Beats Solo</h3>
<span>$300</span>
<i class="bx bx-shopping-bag"></i>
</div>
<div class="box">
<img src="img/shop3.png" alt="shop3" />
<h3>Beats Solo</h3>
<span>$300</span>
<i class="bx bx-shopping-bag"></i>
</div>
<div class="box">
<img src="img/shop4.png" alt="shop4" />
<h3>Beats Solo</h3>
<span>$300</span>
<i class="bx bx-shopping-bag"></i>
</div>
<div class="box">
<img src="img/shop5.png" alt="shop5" />
<h3>Beats Solo</h3>
<span>$300</span>
<i class="bx bx-shopping-bag"></i>
</div>
<div class="box">
<img src="img/shop6.png" alt="shop6" />
<h3>Beats Solo</h3>
<span>$300</span>
<i class="bx bx-shopping-bag"></i>
</div>
</div>
</section>
<section class="buds" id="buds">
<div class="buds-container container">
<div class="buds-text">
<h2>Beats Studio Buds</h2>
<span>$149.95</span>
<p>One-touch pairing for Apple and Android</p>
<a
href="https://www.beatsbydre.com/earbuds/studio-buds"
class="btn"
>
<i class="bx bx-shopping-bag"></i>
<span>Buy Now</span>
</a>
</div>
<div class="buds-img">
<img src="img/buds.png" alt="buds" />
</div>
</div>
</section>
<section class="footer container">
<a href="#" class="logo"><img src="img/logo.png" alt="logo" /></a>
<div class="footer-box">
<h2>Products</h2>
<a href="#">Headphones</a>
<a href="#">Earbuds</a>
<a href="#">Earphone</a>
<a href="#">Case</a>
</div>
<div class="footer-box">
<h2>Payments</h2>
<a href="#">Return Policy</a>
<a href="#">Refunds Policy</a>
<a href="#">Support</a>
<a href="#">Term Of Use</a>
</div>
<div class="footer-box">
<h2>Social</h2>
<div class="social">
<a href=""><i class="bx bxl-facebook"></i></a>
<a href=""><i class="bx bxl-instagram"></i></a>
<a href=""><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</section>
<div class="copyright">
<p>© EdwinDev6 All Right Reserved</p>
</div>
</div>
<script src="https://unpkg.com/scrollreveal"></script>
<script src="main.js"></script>
</body>
</html>