-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.html
308 lines (304 loc) · 15.9 KB
/
bootstrap.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap website</title>
<link rel="stylesheet" href="bootstrap.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<nav class=" navbar navbar-expand-lg" style="background-color: #e3f2fd;">
<div class="container-fluid">
<a class="navbar-brand" href="/">Amazon</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">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/partice/bootstrapWebsite/bootstrap.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/partice/bootstrapWebsite/about.html">About</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Shopping
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Clothes</a></li>
<li><a class="dropdown-item" href="#">Bikes</a></li>
<li><a class="dropdown-item" href="#">Mobiles</a></li>
<li><a class="dropdown-item" href="#">Rakhi</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
<li><a class="dropdown-item" href="#">Home & Kitchen</a></li>
<li><a class="dropdown-item" href="#">Men's Fashion</a></li>
<li><a class="dropdown-item" href="#">Appliances</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link " href="/partice/bootstrapWebsite/Reports">Reports</a>
</li>
<li class="nav-item ">
<a class="nav-link " href="/partice/bootstrapWebsite/contact.html">Contacts Us</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Amazon Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
<div class="mx-2">
<button class="btn btn-success" data-bs-toggle="modal" data-bs-target="#loginModal">Sing In</button>
<button class="btn btn-success" data-bs-toggle="modal" data-bs-target="#singupModal">Sing Up</button>
</div>
</div>
</div>
</nav>
<!-- log in Modal -->
<div class="modal fade" id="loginModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="loginModalLabel">log in to website</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-primary">Log IN</button>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--log out modal-->
<div class="modal fade" id="singupModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="singupModalLabel">Sing up to website</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label"> Conform Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-primary">Create Account</button>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div id="carouselExampleCaptions" class="carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="img-fluid" src="/partice/bootstrapWebsite/bootstrapImage/cardImage/1.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h2> Welcome to Bootstrap</h2>
<p>Some representative placeholder content for the first slide.</p>
<div class="button btn btn-danger">Technology</div>
<div class="button btn btn-success">Development</div>
<div class="button btn btn-primary">Trends</div>
</div>
</div>
<div class="carousel-item">
<img class="img-fluid" src="/partice/bootstrapWebsite/bootstrapImage/cardImage/2.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h2>Welcome to Visit</h2>
<p>Some representative placeholder content for the second slide.</p>
<div class="button btn btn-danger">Technology</div>
<div class="button btn btn-success">Development</div>
<div class="button btn btn-primary">Trends</div>
</div>
</div>
<div class="carousel-item">
<img class="img-fluid" src="/partice/bootstrapWebsite/bootstrapImage/cardImage/3.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h2> Thanks you </h2>
<p>Some representative placeholder content for the third slide.</p>
<div class="button btn btn-danger">Technology</div>
<div class="button btn btn-success">Development</div>
<div class="button btn btn-primary">Trends</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" 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="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="container my-4 d-flex">
<div class="card" style="width: 18rem;">
<img class="img-fluid" src="/partice/bootstrapWebsite/bootstrapImage/cardImage/card1.jpg" class="card-img-top"
alt="...">
<div class="card-body">
<h5 class="card-title">Low Priced Laptop</h5>
<p class="card-text">Choose from a vast selection of desktop,comonents,accessories & move from top brands .</p>
<a href="#" class="btn btn-primary">check</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<img class="img-fluid" src="/partice/bootstrapWebsite/bootstrapImage/cardImage/card2.jpg" class="card-img-top"
alt="...">
<div class="card-body">
<h5 class="card-title">Vintage Camera</h5>
<p class="card-text">Find the best Old Model price! Old Modal for sale in india .Buy and sall second hand camera
& lenses in india. </p>
<a href="#" class="btn btn-primary ">click</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<img class="img-fluid" src="/partice/bootstrapWebsite/bootstrapImage/cardImage/card3.jpg" class="card-img-top"
alt="...">
<div class="card-body">
<h5 class="card-title">Large Pizza</h5>
<p class="card-text">Order from the city's best restaurants serving pizza and get up to 60% off!. Try this new
pizza.</p>
<a href="#" class="btn btn-primary">check</a>
</div>
</div>
<div class="card" style="width: 18rem;">
<img class="img-fluid" src="/partice/bootstrapWebsite/bootstrapImage/cardImage/card4.jps.avif"
class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Pixel Camera</h5>
<p class="card-text">It is free , simple and allows you to take photos online quickly and easy in a course of
clicks.</p>
<a href="#" class="btn btn-primary">visit</a>
</div>
</div>
</div>
<div class="container">
<div class="row mb-2">
<div class="col-md-6">
<div class="row g-0 border rounded overflow-hidden flex-md-row mb-4 shadow-sm h-md-250 position-relative">
<div class="col p-4 d-flex flex-column position-static">
<strong class="d-inline-block mb-2 text-primary-emphasis">Tech World</strong>
<h3 class="mb-0">Computer Information</h3>
<div class="mb-1 text-body-secondary">Nov 12</div>
<p class="card-text mb-auto">This is a wider card with supporting text below as a natural lead-in to additional content. This is calld computer are the best Technology.</p>
<a href="#" class="icon-link gap-1 icon-link-hover stretched-link">
Continue reading
<svg class="bi"><use xlink:href="#chevron-right"></use></svg>
</a>
</div>
<div class="col-auto d-none d-lg-block my-4 mx-2">
<img src="/partice/bootstrapWebsite/bootstrapImage/cardImage/bolg1.jpg" alt="">
</div>
</div>
</div>
<div class="col-md-6">
<div class="row g-0 border rounded overflow-hidden flex-md-row mb-4 shadow-sm h-md-250 position-relative">
<div class="col p-4 d-flex flex-column position-static">
<strong class="d-inline-block mb-2 text-success-emphasis">Clock's Were</strong>
<h3 class="mb-0">Post title</h3>
<div class="mb-1 text-body-secondary">Nov 11</div>
<p class="mb-auto"> clock is a device used to tell time. Moving hands on the face of a clock point to the current hour, minute, and second. A clock can be big enough to be in a giant tower. A clock can also be small enough to fit on a person's wrist.</p>
<a href="#" class="icon-link gap-1 icon-link-hover stretched-link">
Continue reading
<svg class="bi"><use xlink:href="#chevron-right"></use></svg>
</a>
</div>
<div class="col-auto d-none d-lg-block my-4 mx-2">
<img src="/partice/bootstrapWebsite/bootstrapImage/cardImage/blog2.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
<div class="container my-4 ml-4 pl-2">
<div class="row">
<div class="col-lg-4">
<svg class="bd-placeholder-img rounded-circle" width="140" height="140" xmlns="http://www.w3.org/2000/svg"
role="img" aria-label="Placeholder" preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="var(--bs-secondary-color)"></rect>
</svg>
<h2 class="fw-normal">Heading</h2>
<p>Some representative placeholder content for the three columns of text below the carousel. This is the first
column.</p>
<p><a class="btn btn-secondary" href="#">View details »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<svg class="bd-placeholder-img rounded-circle" width="140" height="140" xmlns="http://www.w3.org/2000/svg"
role="img" aria-label="Placeholder" preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="var(--bs-secondary-color)"></rect>
</svg>
<h2 class="fw-normal">Heading</h2>
<p>Another exciting bit of representative placeholder content. This time, we've moved on to the second column.
</p>
<p><a class="btn btn-secondary" href="#">View details »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-lg-4">
<svg class="bd-placeholder-img rounded-circle" width="140" height="140" xmlns="http://www.w3.org/2000/svg"
role="img" aria-label="Placeholder" preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="var(--bs-secondary-color)"></rect>
</svg>
<h2 class="fw-normal">Heading</h2>
<p>And lastly this, the third column of representative placeholder content.</p>
<p><a class="btn btn-secondary" href="#">View details »</a></p>
</div><!-- /.col-lg-4 -->
</div>
</div>
<footer class="container my-4">
<p class="float-end"><a href="#">Back to top</a></p>
<p>© 2024–2025 Company, Inc. · <a href="#">Privacy</a> · <a href="#">Terms</a></p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
</body>
</html>