-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
188 lines (188 loc) · 6.99 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
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>BS-One-Page-Ecommerce</title>
<!-- google font link -->
<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=Poppins&display=swap"
rel="stylesheet"
/>
<!-- font-awesome link -->
<script
src="https://kit.fontawesome.com/f1a11fb0ce.js"
crossorigin="anonymous"
></script>
<!-- bootstrap css link -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<!-- custom css link -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- header start -->
<header class="container">
<!-- navbar start -->
<nav class="navbar navbar-expand-lg bg-white">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img
src="images/logo.png"
alt="Logo Of Website"
width="150"
height="30"
/>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 fw-semibold fs-6">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Shoes</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Bagpack</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Subscribe</a>
</li>
</ul>
<form class="d-flex" role="search">
<input
class="form-control me-2"
type="search"
placeholder="Search"
aria-label="Search"
/>
<button class="btn btn-outline-success" type="submit">
Search
</button>
</form>
</div>
</div>
</nav>
<!-- slider section start -->
<section class="my-5 p-5 rounded w-100 mx-auto" id="slider">
<div
id="carouselExampleControls"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="d-flex justify-content-between">
<div class="banner-description me-5 py-2">
<h1 class="fw-semibold mb-3">Cool Dude Headphone</h1>
<p class="mb-3">
This is the best headphone in the world for people who just
want to waste time in front of funky world.
</p>
<h1 class="fw-semibold mb-2" id="banner-price">$420</h1>
<button class="btn" id="button">
Buy Now <i class="fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="banner-image">
<img
src="images/banner-images/headphone.png"
class="d-block w-75 img-fluid"
alt="Banner of headphone"
/>
</div>
</div>
</div>
<div class="carousel-item">
<div class="d-flex justify-content-between">
<div class="banner-description me-5 py-2">
<h1 class="fw-semibold mb-3">Mega LCD TV For Sports</h1>
<p class="mb-3">
This is the best television in the world for people who just
want to waste time in front of funky world.
</p>
<h1 class="fw-semibold mb-2" id="banner-price">$1200</h1>
<button class="btn" id="button">
Buy Now <i class="fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="banner-image">
<img
src="images/banner-images/tv.png"
class="d-block w-75 img-fluid"
alt="Banner of headphone"
/>
</div>
</div>
</div>
<div class="carousel-item">
<div class="d-flex justify-content-between">
<div class="banner-description me-5 py-2">
<h1 class="fw-semibold mb-3">X-Box for your living room</h1>
<p class="mb-3">
This is the best x-box in the world for people who just want
to waste time in front of funky world.
</p>
<h1 class="fw-semibold mb-2" id="banner-price">$600</h1>
<button class="btn" id="button">
Buy Now <i class="fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="banner-image">
<img
src="images/banner-images/xbox.png"
class="d-block w-75 img-fluid"
alt="Banner of headphone"
/>
</div>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleControls"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
</header>
<main></main>
<footer></footer>
<!-- bootstrap js script -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
</body>
</html>