-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
184 lines (159 loc) · 4.8 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
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boat Headphones</title>
<!-- External CSS -->
<link rel="stylesheet" href="style.css">
<!-- Ionicons icon CDN -->
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</head>
<body>
<!-- Header section start -->
<section class="header">
<div class="container">
<div class="logo">
<h4><ion-icon name="boat-outline"></ion-icon> boAt</h4>
</div>
<div class="row">
<div class="col">
<h2 class="main-heading">
The Westmire <br>
<span>boAt Rockerz 450</span>
</h2>
<div class="buttons">
<button class="btn dark">Buy Now</button>
<button class="btn light">Shop All</button>
</div>
</div>
<div class="col">
<img src="img/headphone.png" alt="Boat Headphone" class="featured-img">
</div>
</div>
</div>
</section>
<!-- Header section ends -->
<!-- About section starts -->
<section class="about">
<div class="container">
<div class="row">
<div class="col">
<h2 class="section-heading">All-new technology</h2>
<p class="para-line">
Set your mind ablaze with the slick sound and expansive design noise cancelling headphones that have culminated into the boAt Rockerz 450, adding luxury to your sound. Propelled by crystal clear 40mm dynamic drivers, slip into an alternate HD immersive audio reality. The soft cornered matte black finish allows for a comfortable fit, propagated by plush foam in adaptive and adjustable design.
</p>
</div>
<div class="col">
<img src="img/about-headphone.png" class="about-img" alt="">
</div>
</div>
</div>
</section>
<!-- About section ends -->
<!-- Color veriation section starts -->
<section class="colors">
<div class="container">
<h2 class="section-heading">Shop by color</h2>
<div class="row">
<div class="col">
<div class="product">
<img src="img/ocean-headphone.png" alt="" class="product-img">
<h3 class="product-heading">boAt Ocean</h3>
<div class="product-desc">
High class, high quality phones at affordable prices
</div>
</div>
</div>
<div class="col">
<div class="product">
<img src="img/charcole-headphone.png" alt="" class="product-img">
<h3 class="product-heading">boAt Charcole</h3>
<div class="product-desc">
High class, high quality phones at affordable prices
</div>
</div>
</div>
<div class="col">
<div class="product">
<img src="img/headphone.png" alt="" class="product-img">
<h3 class="product-heading">boAt Dessert</h3>
<div class="product-desc">
High class, high quality phones at affordable prices
</div>
</div>
</div>
</div>
<div class="spacer"></div>
<button class="btn light">Shop All</button>
</div>
</section>
<!-- Color veriation section ends -->
<!-- Support section starts -->
<section class="support">
<div class="container">
<div class="row">
<div class="col">
<h2 class="section-heading">Expert Support</h2>
<p class="para-line">
So that you can control your music with no hiccups, communicate seamlessly using the in-build mic and so that you can always stay in the zone.
</p>
<p class="para-line">
Visit us in stores!
</p>
<div class="spacer"></div>
<h4 class="sub-heading">Our Locations</h4>
<p class="para-line">
123, Anywhere st, <br>
Any city, State, Any country, <br>
(123) 456 7890
</p>
<br>
<p class="para-line">
123, Anywhere st, <br>
Any city, State, Any country, <br>
(123) 456 7890
</p>
</div>
<div class="col">
<img src="img/support-headphone.png" alt="" class="support-img">
</div>
</div>
</div>
</section>
<!-- Support section ends -->
<!-- Footer section starts -->
<section class="footer">
<div class="container">
<div class="row">
<div class="col">
<h2 class="section-heading">Connect with us</h2>
</div>
<div class="col">
<div class="row">
<div class="col">
<h3 class="link-heading">Main office</h3>
<p class="para-line">
123, Anywhere st, Any city,<br>
State, Any country, <br>
(123) 456 7890
</p>
</div>
<div class="col">
<h3 class="link-heading">Social Media</h3>
<ul class="link-items">
<li class="link-item"><a href="#">Facebook</a></li>
<li class="link-item"><a href="#">Instagram</a></li>
<li class="link-item"><a href="#">Twitter</a></li>
</ul>
<div class="spacer"></div>
<h3 class="link-heading">[email protected]</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer section ends -->
</body>
</html>