-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
376 lines (325 loc) · 17.5 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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
name="viewport">
<meta content="ie=edge" http-equiv="X-UA-Compatible">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link crossorigin="anonymous" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
referrerpolicy="no-referrer" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<title>Bootstrap Example 1</title>
</head>
<body>
<!-- nav section starts -->
<nav class="navbar navbar-expand-lg navbar-dark" style="background-color: brown;">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="images/logo.jpg" width="180px" height="26">
</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="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Services
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Web Development</a></li>
<li><a class="dropdown-item" href="#">App Development</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="#">SEO</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Us</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-light text-white" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- nav section ends -->
<!-- slider section starts -->
<div id="carouselExampleCaptions" class="carousel slide">
<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 id="carouselHero" class="carousel-inner">
<div class="carousel-item active">
<img src="images/1.jpeg" class="d-block w-100 h-img" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>First slide label</h5>
<p>Some representative placeholder content for the first slide.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/2.webp" class="d-block w-100 h-img" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>Second slide label</h5>
<p>Some representative placeholder content for the second slide.</p>
</div>
</div>
<div class="carousel-item">
<img src="images/3.jpg" class="d-block w-100 h-img" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>Third slide label</h5>
<p>Some representative placeholder content for the third slide.</p>
</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>
<!-- slider section ends -->
<!-- feature section starts -->
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h3 class="display-6 text-center mt-5 mb-2">Lorem ipsum dolor sit amet consectetur, adipisicing
elit.<br> Repellendus
quisquam exercitationem.</h3>
</div>
</div>
<div class="row justify-content-evenly pt-3 pb-3">
<div class="col-md-3 mt-5 text-center">
<h1><i class="bi bi-file-code-fill text-primary"></i></h1>
<h5>Built for developers</h5>
<p>It is built to make your life easier. Variables, build tooling, documentation, and reusable
components.</p>
</div>
<div class="col-md-3 mt-5 text-center">
<h1><i class="bi bi-easel-fill text-danger"></i></h1>
<h5>Built for developers</h5>
<p>It is built to make your life easier. Variables, build tooling, documentation, and reusable
components.</p>
</div>
<div class="col-md-3 mt-5 text-center">
<h1><i class="bi bi-calendar-range-fill text-success"></i></h1>
<h5>Built for developers</h5>
<p>It is built to make your life easier. Variables, build tooling, documentation, and reusable
components.</p>
</div>
</div>
</div>
<hr>
<!-- feature section ends -->
<!-- growth analysis section starts -->
<div class="container">
<div class="row justify-content-evenly pt-3 pb-5 ">
<!-- image section starts -->
<div class="col-md-5">
<img src="images/4.png" class="img-fluid">
</div>
<!-- image section ends -->
<!-- progress bar section starts -->
<div class="col-md-5">
<h5 class="mt-3">Website Development</h5>
<div class="progress" role="progressbar" aria-label="Success example" aria-valuenow="25"
aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-success" style="width: 95%">95%</div>
</div>
<h5 class="mt-3">App Development</h5>
<div class="progress" role="progressbar" aria-label="Info example" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100">
<div class="progress-bar bg-info text-dark" style="width: 75%">75%</div>
</div>
<h5 class="mt-3">Software Development</h5>
<div class="progress" role="progressbar" aria-label="Warning example" aria-valuenow="75"
aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-warning text-dark" style="width: 100%">100%</div>
</div>
<h5 class="mt-3">SEO</h5>
<div class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="100"
aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-danger" style="width: 85%">85%</div>
</div>
<h5 class="mt-3">Digital Marketing</h5>
<div class="progress" role="progressbar" aria-label="Danger example" aria-valuenow="100"
aria-valuemin="0" aria-valuemax="100">
<div class="progress-bar bg-primary" style="width: 100%">100%</div>
</div>
</div>
<!-- progress bar section ends -->
</div>
</div>
<!-- growth analysis section ends -->
<!-- contact section starts -->
<div class="container">
<div class="row justify-content-evenly pt-2 pb-5" style="background-color: #f1f1f1;">
<div class="col-md-5 mt-5">
<h3 class="mb-4 ">Contact Form</h3>
<form>
<div class="mb-3">
<label for="name" class="form-label">Full Name</label>
<input type="text" class="form-control" id="name">
</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</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-3">Address <i class="bi bi-geo-alt-fill" style="color: red;"></i></h3>
<p>Tulip Orange, Sec 70 <br> Gurgaon, Hrayana - 122101<br>
<i class="bi bi-telephone-fill" style="color: darkgreen;"></i> +917351590064
</p>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d224567.7202250566!2d76.82493166545629!3d28.423160295828595!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390d19d582e38859%3A0x2cf5fe8e5c64b1e!2sGurugram%2C%20Haryana!5e0!3m2!1sen!2sin!4v1695120994140!5m2!1sen!2sin"
class="pt-2" style="width: 100%;" height="250" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</div>
<!-- contact section ends -->
<!-- FAQ's section starts -->
<div class="container">
<div class="row justify-content-evenly pt-5 pb-5">
<div class="col-md-10">
<h3 class="text-center pb-4">FAQ</h3>
<div class="accordion accordion-flush border" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseOne" aria-expanded="false"
aria-controls="flush-collapseOne">
Accordion Item #1
</button>
</h2>
<div id="flush-collapseOne" class="accordion-collapse collapse"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">Placeholder content for this accordion, which is intended to
demonstrate the <code>.accordion-flush</code> class. This is the first item's
accordion
body.</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseTwo" aria-expanded="false"
aria-controls="flush-collapseTwo">
Accordion Item #2
</button>
</h2>
<div id="flush-collapseTwo" class="accordion-collapse collapse"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">Placeholder content for this accordion, which is intended to
demonstrate the <code>.accordion-flush</code> class. This is the second item's
accordion
body. Let's imagine this being filled with some actual content.</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseThree" aria-expanded="false"
aria-controls="flush-collapseThree">
Accordion Item #3
</button>
</h2>
<div id="flush-collapseThree" class="accordion-collapse collapse"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">Placeholder content for this accordion, which is intended to
demonstrate the <code>.accordion-flush</code> class. This is the third item's
accordion
body. Nothing more exciting happening here in terms of content, but just filling up
the
space to make it look, at least at first glance, a bit more representative of how
this
would
look in a real-world application.</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- FAQ's section ends -->
<!-- footer section starts -->
<section class="bg-dark">
<div class="container">
<div class="row justify-content-evenly text-white pt-2 pb-5">
<div class="col-md-3 pt-4">
<h5 class="pb-2">Anuj Gangwar</h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos, molestiae reiciendis ut aut alias
veniam
consectetur.</p>
</div>
<div class="col-md-3 pt-4">
<h5 class="pb-2">Important Links</h5>
<p>
<a href="#" class="link-light text-decoration-none">Home</a><br>
<a href="#" class="link-light text-decoration-none">About Us</a><br>
<a href="#" class="link-light text-decoration-none">Contact Us</a><br>
<a href="#" class="link-light text-decoration-none">Our Team</a><br>
<a href="#" class="link-light text-decoration-none">Our Client</a>
</p>
</div>
<div class="col-md-3 pt-4">
<h5 class="pb-2">Conatct Us</h5>
<p>Tulip Orange, Sec 70 <br> Gurgaon, Hrayana - 122101<br>
<i class="bi bi-telephone-fill"></i> +917351590064
</p>
</div>
</div>
</div>
<!-- footer section ends -->
<!-- copyright -->
<div class="container">
<div class="row text-white text-center pb-2">
<div class="col-12">
<p>Copyright ©2023 All rights reserved. | This template is made by <span style="color:yellow;">
Anuj Gangwar</span></p>
</div>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"></script>
</body>
</html>