-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap01.html
282 lines (236 loc) · 14.5 KB
/
bootstrap01.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="project1.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<title>project1</title>
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">NSR</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="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Client</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
services
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">android</a></li>
<li><a class="dropdown-item" href="#">web development</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">machine learning</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-light" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- slider -->
<div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="3" class="active" aria-current="true" aria-label="Slide 4"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://cdn.pixabay.com/photo/2018/01/14/23/12/nature-3082832__480.jpg" class="d-block w-100" alt="">
</div>
<div class="carousel-item">
<img src="https://images.hdqwalls.com/download/best-nature-image-1440x900.jpg" class="d-block w-100" alt="">
</div>
<div class="carousel-item">
<img src="https://i.pinimg.com/originals/9d/bb/7b/9dbb7b1fee6b77fcfd20cb2b9023701f.jpg" class="d-block w-100" alt="">
</div>
<div class="carousel-item">
<img src="https://wallpapercave.com/wp/wc1801711.jpg" class="d-block w-100" alt="">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators" 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="#carouselExampleIndicators" 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-fluid">
<div class="row">
<div class="col-12">
<h3 class="display-6 text-center mt-2 mb-3">Lorem ipsum dolor sit amet consectetur adipisicing elit.
<br> Cupiditate neque repellat saepe </h3>
</div>
</div>
<div class="row justify-content-evenly pt-3">
<div class="col-md-3 text-center pt-2">
<h1><i class="bi bi-youtube"></i></h1>
<h5>Built for developers</h5>
<p>landikit is built to make your life easier. varibles, build tooling, documentation</p>
</div>
<div class="col-md-3 text-center pt-3">
<h1><i class="bi bi-wifi-2"></i></h1>
<h5>Built for developers</h5>
<p>landikit is built to make your life easier. varibles, build tooling, documentation</p>
</div>
<div class="col-md-3 text-center pt-3">
<h1><i class="bi bi-volume-up"></i></h1>
<h5>Built for developers</h5>
<p>landikit is built to make your life easier. varibles, build tooling, documentation</p>
</div>
</div>
<hr>
<div class="row justify-content-evenly pt-3 pb-5">
<div class="col-md-5 pt-3">
<img class="img-fluid" src="https://i.pinimg.com/236x/e4/66/04/e466048125f1cd832d848cd4a476388a--story-quotes-story-story.jpg" alt="">
</div>
<div class="col-md-5 pt-3">
<h5 class="mt-3">amazing</h5>
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" style="width: 25%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h5 class="mt-3">beautiful</h5>
<div class="progress">
<div class="progress-bar bg-info" role="progressbar" style="width: 50%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h5 class="mt-3">awesome</h5>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h5 class="mt-3">great</h5>
<div class="progress">
<div class="progress-bar bg-danger" role="progressbar" style="width: 88%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<h5 class="mt-3">fabulous</h5>
<div class="progress">
<div class="progress-bar bg-primary" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="row justify-content-evenly pt-2 pb-5" style="background-color: rgb(163, 159, 159);">
<div class="col-md-5 mt-5">
<h3 class="mb-4">Contact Form</h3>
<form>
<div class="mb-3">
<label for="Nameid" class="form-label">Full Name</label>
<input type="text" class="form-control" id="Nameid">
</div>
<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="exampleFormControlTextarea1" class="form-label">Message us</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-danger ">Submit</button>
</form>
</div>
<div class="col-md-5 mt-5">
<h3 class="mb-4">Address</h3>
<p>1234 - nsrway,<br> near by rohini - 1539 <br> Contact us: 123456789</p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d774398.3486345535!2d-74.53873515141258!3d40.69613971468846!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c24fa5d33f083b%3A0xc80b8f06e177fe62!2sNew%20York%2C%20NY%2C%20USA!5e0!3m2!1sen!2sin!4v1647675585806!5m2!1sen!2sin" width="100%" height="300" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
<div class="row justify-content-evenly pt-5 pb-5">
<div class="col-md-10">
<h3 class="text-center mb-4">FAQ</h3>
<div class="accordion border" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Accordion Item #1
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse " aria-labelledby="headingOne" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the first item's accordion body.</strong> It is shown by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Accordion Item #2
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the second item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Accordion Item #3
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the third item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row justify-content-evenly bg-dark text-white pt-2 pb-5">
<div class="col-md-3 pt-4">
<h5 class="pb-2">NSR</h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam nobis, soluta nihil eligendi est enim quaerat unde iure velit odio dicta consequuntur tempore dolores veniam tenetur excepturi! Eveniet, fugit maiores.</p>
</div>
<div class="col-md-3 pt-4">
<h5 class="pb-2">About us</h5>
<p>
<a class="text-white text-decoration-none" href="#">Home</a>
<a class="text-white text-decoration-none" href="#">About Us</a>
<a class="text-white text-decoration-none" href="#">Contact Us</a>
<a class="text-white text-decoration-none" href="#">Our Team</a>
<a class="text-white text-decoration-none" href="#">Our Client</a>
</p>
</div>
<div class="col-md-3 pt-4">
<h5 class="pb-2">Contact Us</h5>
<p>1234 - nsrway,<br> near by rohini - 1539 <br> Contact us: 123456789</p>
</div>
</div>
<div class="row bg-secondary text-white text-center p-3">
<div class="col-12">
<p>Copyright 1234-6784 by NSR. All Rights Reserved.</p>
</div>
</div>
</div>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>