-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
353 lines (329 loc) · 13 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
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Module5 Assignment</title>
<link rel="stylesheet" href="./css/font-awesome.min.css">
<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<!--Create 10 buttons by Bootstrap Each button should have different colors and properties starts-->
<div class="container-lg" >
<div class="row-cols-3">
<br>
<br>
<button type="button" class="btn btn-danger">Button1</button>
<button type="button" class="btn btn-link text-danger">button2</button>
<br>
<br>
<button type="button" class="btn btn-outline-danger">Button3</button>
<button type="button" class="btn btn-primary btn-lg">Large button4</button>
<br>
<br>
<input class="btn btn-warning" type="button" value="Button5">
<button type="button" class="btn btn-secondary btn-sm">Small button6</button>
<br>
<br>
<button type="button" class="btn btn-outline-success" disabled>Primary button7</button>
<button type="button" class="btn active" data-bs-toggle="button" aria-pressed="true">Active toggle button8</button>
<br>
<br>
<div class="d-grid gap-2">
<button class="btn btn-info" type="button">Button9</button>
</div>
<br>
<p class="d-inline-flex gap-1">
<a href="#" class="btn btn-primary" role="button" data-bs-toggle="button">Toggle link button 10</a>
<a href="#" class="btn btn-primary active" role="button" data-bs-toggle="button" aria-pressed="true">Active toggle link</a>
<a class="btn btn-primary disabled" aria-disabled="true" role="button" data-bs-toggle="button">Disabled toggle link</a>
</p>
</div>
</div>
<br>
<br>
<br>
<!--Create 10 buttons by Bootstrap Each button should have different colors and properties ends-->
<!--Create a card start-->
<div class="container-lg">
<div class="card" style="width: 18rem;">
<img src="https://placehold.co/400" class="card-img-top" alt="...">
<div class="card-body" >
<h5 class="card-title text-danger">Cities of Bangladesh</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item">Dhaka</li>
<li class="list-group-item">Chittagong</li>
<li class="list-group-item">Sylhet</li>
</ul>
<div class="card-body">
<a href="#" class="card-link text-danger">Book a tour</a>
<a href="#" class="card-link text-danger">More</a>
</div>
</div>
</div>
<!--Create a card ends-->
<br>
<br>
<!--Create some form using bootstrap start-->
<div class="container-fluid bg-dark text-light py-3">
<header class="text-center">
<h1 class="display-6">Welcome to My page</h1>
</header>
</div>
<section class="container my-2 bg-dark w-50 text-light p-2">
<form class="row g-3 p-3">
<div class="col-md-4">
<label for="validationDefault01" class="form-label">First name</label>
<input type="text" class="form-control" id="validationDefault01" value="Mark" required>
</div>
<div class="col-md-4">
<label for="validationDefault02" class="form-label">Last name</label>
<input type="text" class="form-control" id="validationDefault02" value="Otto" required>
</div>
<div class="col-md-4">
<label for="validationDefaultUsername" class="form-label">Username</label>
<div class="input-group">
<span class="input-group-text" id="inputGroupPrepend2">@</span>
<input type="text" class="form-control" id="validationDefaultUsername" aria-describedby="inputGroupPrepend2" required>
</div>
</div>
<div class="col-md-6">
<label for="inputEmail4" class="form-label">Email</label>
<input type="email" class="form-control" id="inputEmail4">
</div>
<div class="col-md-6">
<label for="inputPassword4" class="form-label">Password</label>
<input type="password" class="form-control" id="inputPassword4">
</div>
<div class="col-12">
<label for="inputAddress" class="form-label">Address</label>
<input type="text" class="form-control" id="inputAddress" placeholder="1234 Main St">
</div>
<div class="col-12">
<label for="inputAddress2" class="form-label">Address 2</label>
<input type="text" class="form-control" id="inputAddress2" placeholder="Apartment, studio, or floor">
</div>
<div class="col-md-6">
<label for="inputCity" class="form-label">City</label>
<input type="text" class="form-control" id="inputCity">
</div>
<div class="col-md-4">
<label for="inputState" class="form-label">State</label>
<select id="inputState" class="form-select">
<option selected>Choose...</option>
<option>...</option>
</select>
</div>
<div class="col-md-2">
<label for="inputZip" class="form-label">Zip</label>
<input type="text" class="form-control" id="inputZip">
</div>
<div class="col-12">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck">
<label class="form-check-label" for="gridCheck">
Check me out
</label>
</div>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary">Sign in</button>
</div>
</form>
</section>
<!--Create some form using bootstrap ends-->
<br>
<br>
<!--Create some list with bootstrap start-->
<div class="container-lg">
<div class="container-fluid bg-dark-subtle text-light py-3">
<header class="text-center">
<h1 class="display-6 text-black">List of Cities</h1>
</header>
<ul class="list-group">
<li class="list-group-item active " aria-current="true">Dhaka</li>
<li class="list-group-item">Chittagong</li>
<li class="list-group-item">Sylhet</li>
<li class="list-group-item">Barisal</li>
<li class="list-group-item">Cumilla</li>
<li class="list-group-item">jessore</li>
<li class="list-group-item">Rajshahi</li>
</ul>
</div>
<!--Create some list with bootstrap ends-->
<br>
<br>
<!--Create a navbar with Bootstrap start -->
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-lg">
<a class="navbar-brand text-danger fw-bold fs-2" href="#">Bangladesh</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 text-danger fs-5" aria-current="page" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-danger fs-5" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link active text-danger fs-5" aria-current="page" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link active text-danger fs-5" aria-current="page" href="#testimonials">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link active text-danger fs-5" aria-current="page" href="#contact">Contact</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-danger fs-5" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Projects
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item text-danger" href="#alpha">Alpha</a></li>
<li><a class="dropdown-item text-danger" href="#gamma">Gamma</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item text-danger" href="#beta">Beta</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link disabled fs-5" aria-disabled="true">Disabled</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-danger text-black fs-5" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!--Create a navbar with Bootstrap ends -->
<br>
<br>
<!--Create a progress-bar with Bootstrap start-->
<div class="progress">
<div class="progress-bar bg-danger progress-bar-striped progress-bar-animated" role="progressbar" style="width: 55%" aria-valuenow="55" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<!--Create a progress-bar with Bootstrap ends-->
<br>
<br>
<!--Create a pagination with Bootstrap start-->
<nav aria-label="Page navigation">
<ul class="pagination ">
<li class="page-item disabled ">
<a class="page-link" href="#" tabindex="-1" aria-disabled="true">Previous</a>
</li>
<li class="page-item"><a class="page-link " href="#">1</a></li>
<li class="page-item active " aria-current="page">
<a class="page-link " href="#">2</a>
</li>
<li class="page-item"><a class="page-link " href="#">3</a></li>
<li class="page-item"><a class="page-link" href="#">4</a></li>
<li class="page-item" aria-current="page">
<a class="page-link " href="#">5</a>
</li>
<li class="page-item"><a class="page-link " href="#">6</a></li>
<li class="page-item">
<a class="page-link " href="#">Next</a>
</li>
</ul>
</nav>
<!--Create a pagination with Bootstrap ends-->
<br>
<br>
<!--Create a dropdown with Bootstrap start-->
<div class="container">
<div class="btn-group ">
<button type="button" class="btn btn-danger dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
Cities
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Dhaka</a></li>
<li><a class="dropdown-item active text-bg-danger" href="#" aria-current="true">Chittagong</a></li>
<li><a class="dropdown-item" href="#">Sylhet</a></li>
<li><a class="dropdown-item" href="#">Cumilla</a></li>
<li><a class="dropdown-item" href="#">Jessore</a></li>
<li><a class="dropdown-item" href="#">Rajshahi</a></li>
</ul>
</div>
</div>
<!--Create a dropdown with Bootstrap ends-->
<br>
<br>
<!--Create a table with Bootstrap starts-->
<table class="table caption-top">
<caption class="text-danger text-center fw-bold fs-3">List of Cities</caption>
<thead>
<table class="table">
<thead>
<tr>
<th scope="col">Cities</th>
<th scope="col">Population</th>
<th scope="col">Birth rate</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Dhaka</th>
<td>20 Million</td>
<td>34%</td>
</tr>
<tr class="table-primary">
<th scope="row">Chittagong</th>
<td>5 Millions</td>
<td>25%</td>
</tr>
<tr class="table-secondary">
<th scope="row">Sylhet</th>
<td>8 Millions</td>
<td>40%</td>
</tr>
<tr class="table-success">
<th scope="row">Jessore</th>
<td>2 Millions</td>
<td>12%</td>
</tr>
<tr class="table-danger">
<th scope="row">Cumilla</th>
<td>7 Millions</td>
<td>21%</td>
</tr>
<tr class="table-warning">
<th scope="row">Barishal</th>
<td>4 Millions</td>
<td>19%</td>
</tr>
<tr class="table-info">
<th scope="row">Rajshahi</th>
<td>9 Millions</td>
<td>37%</td>
</tr>
<tr class="table-light">
<th scope="row">Bogura</th>
<td>12 Millions</td>
<td>20%</td>
</tr>
<tr class="table-dark">
<th scope="row">Rangpur</th>
<td>4 Millions</td>
<td>21%</td>
</tr>
</tbody>
</table>
</thead>
<!--Create a table with Bootstrap ends-->
<br>
<br>
<br>
<br>
<br>
<!--Boostrap js and main js -->
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/script.js"></script>
</body>
</html>