-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
471 lines (439 loc) · 28 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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CloudEightDesigns</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Interior Exterior Renovation Architecture Architect Work" name="keywords">
<meta content="Architect website " name="description">
<!-- Favicon -->
<link href="img/cld1.png" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Roboto:wght@500;700&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/tempusdominus/css/tempusdominus-bootstrap-4.min.css" rel="stylesheet" />
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Navbar Start -->
<div class="container-fluid sticky-top bg-dark bg-light-radial shadow-sm px-5 pe-lg-0">
<nav class="navbar navbar-expand-lg bg-dark bg-light-radial navbar-dark py-3 py-lg-0">
<a href="index.html" class="navbar-brand">
<h1 class="m-0 display-4 text-uppercase text-white"><img class="display-5" style="height: 8rem; width: 3em; border-radius: 43px;" src="./img/cld1.png" alt=""></h1>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto py-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="service.html" class="nav-item nav-link">Service</a>
<a href="project.html" class="nav-item nav-link">Our Work</a>
<!-- <div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Pages</a>
<div class="dropdown-menu m-0">
<a href="project.html" class="dropdown-item">Our Project</a>
<a href="team.html" class="dropdown-item">The Team</a>
<a href="testimonial.html" class="dropdown-item">Testimonial</a>
<a href="blog.html" class="dropdown-item">Blog Grid</a>
<a href="detail.html" class="dropdown-item">Blog Detail</a>
</div>
</div> -->
<a href="contact.html" class="nav-item nav-link">Contact</a>
<a href="mailto:[email protected]" target="_blank" style=" border-radius: 80px 190px;"class="nav-item nav-link bg-info text-white px-5 ms-2 d-none d-sm-block">Book your Dream <i class="bi bi-cloud-arrow-up-fill"></i></a>
</div>
</div>
</nav>
</div>
<!-- Navbar End -->
<!-- Carousel Start -->
<div class="container-fluid p-0">
<div id="header-carousel" class="carousel slide carousel-fade" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img style="background-color:bg-dark ; " class=" w-100 bg-dark" src="img/bcd1.jpg" alt="Image">
<div class=" carousel-caption d-flex flex-column align-items-center justify-content-center">
<div class="p-3" style="max-width: 700px; color: rgb(72, 159, 236);">
<!-- <i class="fa bi-cloud fa-4x text-info mb-4 d-none d-sm-block"></i> -->
<h1 style="font-size:8rem ;" class="text-effect cld1 text-uppercase text-secondary bg-dark-radial mb-md-5 ">Cloud <span class="text-info"> Eight</span> Designs <span class="bi-hand-index"></span> </h1>
<p href="" class="btn btn-info py-md-1 px-md-5 mb-5 mt-0">Interior Exterior and Renovation</p>
</div>
</div>
</div>
<div class="carousel-item">
<img class="w-100" src="img/bcd.jpg" alt="Image">
<div class="carousel-caption d-flex flex-column align-items-center justify-content-center">
<div class="p-3" style="max-width: 900px;">
<i class="fa fa-tools fa-4x text-primary mb-4 d-none d-sm-block"></i>
<h1 style="color: rgb(181, 182, 161);" class="display-2 text-uppercase mb-md-4">By dint of building well, you get to be a good architect" </h1>
<p href="" class="btn btn-dark py-md-3 px-md-5 mt-2">- Aristotle</p>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#header-carousel"
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="#header-carousel"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<!-- Carousel End -->
<!-- About Start -->
<div class=" bg-dark-radial py-6 px-5">
<div class="row g-5">
<div class="col-lg-5 pb-5" style="min-height: 400px;">
<div class="position-relative bg-light-radial h-100 ms-1">
<img class="position-absolute w-100 h-100 mt-2 ms-n5" src="img/cld.png" style="object-fit: cover;">
</div>
</div>
<div class="col-lg-7">
<h1 class=" display-5 text-uppercase mb-4"><span class=" text-secondary">CLOUD</span> EIGHT <span class="text-info">DESIGNS</span> HELPS in YOUR DREAM PLANNING</h1>
<h4 class="text-uppercase mb-3 text-body"> HOW <span class="text-secondary"> CloudEightDesigns</span> HELPS in Construction ? <br> <br> <br>
<div class="row gx-5 py-2">
<div class="col-sm-6 mb-2">
<p class="fw-bold mb-2"><i class="fa fa-cloud text-info me-3"></i><i class="fa fa-arrow-right text-secondary me-3"></i>Perfect Planning</p>
<p class="fw-bold mb-2"><i class="fa fa-cloud text-info me-3"></i><i class="fa fa-arrow-right text-secondary me-3"></i>Interior</p>
<p class="fw-bold mb-2"> <i class="fa fa-cloud text-info me-3"></i><i class="fa fa-arrow-right text-secondary me-3"></i>Renovation</p>
<p class="fw-bold mb-2"> <i class="fa fa-cloud text-info me-3"></i><i class="fa fa-arrow-right text-secondary me-3"></i>House Designs</p>
</div>
</div>
</h4>
<br>
<p></p>
<div class="row gx-5 py-2">
<div class="col-sm-6 mb-2">
<p class="fw-bold mb-2"><i class="fa fa-check text-secondary me-3"></i>Vastu Dosh </p>
<p class="fw-bold mb-2"><i class="fa fa-check text-secondary me-3"></i>Cultural Concept</p>
<p class="fw-bold mb-2"><i class="fa fa-check text-secondary me-3"></i>First Working Process</p>
</div>
<div class="col-sm-6 mb-2">
<p class="fw-bold mb-2"><i class="fa fa-check text-secondary me-3"></i>3-D Designs</p>
<p class="fw-bold mb-2"><i class="fa fa-check text-secondary me-3"></i>Walk through</p>
<p class="fw-bold mb-2"><i class="fa fa-check text-secondary me-3"></i>Urban Planning</p>
</div>
</div>
<!-- <p class="mb-4">Tempor erat elitr at rebum at at clita aliquyam consetetur. Diam dolor diam ipsum et, tempor voluptua sit consetetur sit. Aliquyam diam amet diam et eos labore</p> -->
</div>
</div>
</div>
<!-- About End -->
<!-- Services Start -->
<div class="container-fluid bg-dark py-6 px-5">
<div class="text-center mx-auto mb-5" style="max-width: 600px;">
<h1 class="display-5 text-white-50 text-uppercase mb-4"> <span class="text-secondary">CloudEightDesigns <br></span><span class="display-1 text-info">Best</span> <br>Construction Services</h1> <br>
</div>
<div class="row g-5">
<div class="col-lg-4 col-md-6">
<div class="service-item bg-white d-flex flex-column align-items-center text-center">
<img class="img-fluid" src="" alt="">
<div class="service-icon bg-white">
<i class="fa fa-3x fa-building text-secondary"></i>
</div>
<div class="px-4 pb-4">
<h4 class="text-uppercase mb-3">Construction</h4>
<p><strong class="text-info">CloudEightDesigns</strong> <br> helps you to build your home.</p>
<!-- <a class="btn text-info" href="">Read More <i class="bi bi-arrow-right"></i></a> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item bg-white rounded d-flex flex-column align-items-center text-center">
<img class="img-fluid" src="" alt="">
<div class="service-icon bg-white">
<i class="fa fa-3x fa-home text-info"></i>
</div>
<div class="px-4 pb-4">
<h4 class="text-uppercase mb-3">House Renovating</h4>
<p>want House Renovation worry not <br> <strong class="text-info">CloudEightDesigns</strong> Renovates your Dream Home.</p>
<!-- <a class="btn text-info" href="">Read More <i class="bi bi-arrow-right"></i></a> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item bg-white rounded d-flex flex-column align-items-center text-center">
<img class="img-fluid" src="" alt="">
<div class="service-icon bg-white">
<i class="fa fa-3x fa-drafting-compass text-secondary"></i>
</div>
<div class="px-4 pb-4">
<h4 class="text-uppercase mb-3">Architecture Design</h4>
<p>Drawing Lines never be a Architecture. <br> Before draw need to understands the clients feeling.</p>
<!-- <a class="btn text-info" href="">Read More <i class="bi bi-arrow-right"></i></a> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item bg-white rounded d-flex flex-column align-items-center text-center">
<img class="img-fluid" src="" alt="">
<div class="service-icon bg-white">
<i class="fa fa-3x fa-adjust text-info"></i>
</div>
<div class="px-4 pb-4">
<h4 class="text-uppercase mb-3">Interior Design</h4>
<p>We Draw Your Design What Client Wants. <br> We providing Static and as well as Dynamic 3D Designs. </p>
<!-- <a class="btn text-info" href="">Read More <i class="bi bi-arrow-right"></i></a> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item bg-white rounded d-flex flex-column align-items-center text-center">
<img class="img-fluid" src="" alt="">
<div class="service-icon bg-white">
<i class="fa fa-3x fa-hotel text-secondary"></i>
</div>
<div class="px-4 pb-4">
<h4 class="text-uppercase mb-3">Fixing & Support</h4>
<p>Ah!, Again Don't worry <br> <strong class="text-primary">CloudEightDesigns</strong>awalays here to fix it, just kindly contact with us</p>
<!-- <a class="btn text-info" href="">Read More <i class="bi bi-arrow-right"></i></a> -->
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item bg-white rounded d-flex flex-column align-items-center text-center">
<img class="img-fluid" src="" alt="">
<div class="service-icon bg-white">
<i class="fa fa-3x fa-paint-roller text-info"></i>
</div>
<div class="px-4 pb-4">
<h4 class="text-uppercase mb-3">Painting</h4>
<p>Brush your wall <br> choosing a perfect combination with us. </p>
<!-- <a class="btn text-info" href="">Read More <i class="bi bi-arrow-right"></i></a> -->
</div>
</div>
</div>
</div>
</div>
<!-- Services End -->
<!-- Appointment Start -->
<div class="container-fluid py-6 px-5">
<div class="row gx-5">
<div class="col-lg-4 mb-5 mb-lg-0">
<div class="mb-4">
<h1 class="display-5 text-uppercase mb-4">Request A <span class="text-secondary">Call Back</span></h1>
</div>
<!-- <p class="mb-5">Nonumy ipsum amet tempor takimata vero ea elitr. Diam diam ut et eos duo duo sed. Lorem elitr sadipscing eos et ut et stet justo, sit dolore et voluptua labore. Ipsum erat et ea ipsum magna sadipscing lorem. Sit lorem sea sanctus eos. Sanctus sit tempor dolores ipsum stet justo sit erat ea, sed diam sanctus takimata sit. Et at voluptua amet erat justo amet ea ipsum eos, eirmod accusam sea sed ipsum kasd ut.</p> -->
<!-- <a class="btn btn-info py-3 px-5" href="">Get A Quote</a> -->
</div>
<div class="col-lg-8">
<div class="bg-light text-center p-5">
<form>
<div class="row g-3">
<div class="col-12 col-sm-6">
<input type="text" class="form-control border-0" placeholder="Your Name" style="height: 55px;">
</div>
<div class="col-12 col-sm-6">
<input type="email" class="form-control border-0" placeholder="Your Email" style="height: 55px;">
</div>
<div class="col-12 col-sm-6">
<div class="date" id="date" data-target-input="nearest">
<input type="text"
class="form-control border-0 datetimepicker-input"
placeholder="Call Back Date" data-target="#date" data-toggle="datetimepicker" style="height: 55px;">
</div>
</div>
<div class="col-12 col-sm-6">
<div class="time" id="time" data-target-input="nearest">
<input type="text"
class="form-control border-0 datetimepicker-input"
placeholder="Call Back Time" data-target="#time" data-toggle="datetimepicker" style="height: 55px;">
</div>
</div>
<div class="col-12">
<textarea class="form-control border-0" rows="5" placeholder="Message"></textarea>
</div>
<div class="col-12">
<button class="btn btn-info w-100 py-3" type="submit">Submit Request</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Appointment End -->
<!-- Portfolio Start -->
<div class="container-fluid bg-light py-6 px-5">
<div class="text-center mx-auto mb-5" style="max-width: 600px;">
<h1 class="display-5 text-uppercase mb-4">Our <span class="text-info">Popular</span> Projects</h1>
</div>
<div class="row gx-5">
<div class="col-12 text-center">
<div class="d-inline-block bg-white text-center pt-4 px-5 mb-5">
<ul class="list-inline mb-0" id="portfolio-flters">
<li class="btn btn-outline-info bg-dark p-2 mx-2 mb-4" data-filter="*">
<h6 class="text-white"><span class="text-dark"> ---- </span> All <span class="text-dark"> ---- </span></h6>
</li>
<li class="btn btn-outline-info bg-dark p-2 mx-2 mb-4" data-filter=".first">
<h6 class="text-white">Construction</h6>
</li>
<li class="btn btn-outline-info bg-dark p-2 mx-2 mb-4" data-filter=".second">
<h6 class="text-white">Renovation</h6>
</li>
</ul>
</div>
</div>
</div>
<div class="row g-5 portfolio-container">
<div class="col-xl-4 col-lg-6 col-md-6 portfolio-item first">
<div class="position-relative ">
<img class="img-fluid w-100" src="img/topout.jpeg" alt="">
<a class="portfolio-title shadow-sm" href="">
<p class="h4 text-dark text-uppercase">Multipurpose Building</p>
<!-- <span class="text-body"><i class="fa fa-map-marker-alt text-info me-2"></i>Seohara Rd Noorpur, Bijnor</span> -->
</a>
<a class="portfolio-btn" href="img/portfolio-1.jpg" data-lightbox="portfolio">
<i class="bi bi-plus text-white"></i>
</a>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 portfolio-item second">
<div class="position-relative ">
<img class="img-fluid w-100" src="img/workout.jpeg" alt="">
<a class="portfolio-title shadow-sm" href="">
<p class="h4 text-secondary text-uppercase">Shree House</p>
<span class="text-body"><i class="fa fa-map-marker-alt text-info me-2"></i>Gr.Noida ,Uttar Pradesh</span>
</a>
<a class="portfolio-btn" href="img/portfolio-2.jpg" data-lightbox="portfolio">
<i class="bi bi-plus text-white"></i>
</a>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 portfolio-item first">
<div class="position-relative ">
<img class="img-fluid w-100" src="img/3d.jpeg" alt="">
<a class="portfolio-title shadow-sm" href="">
<p class="h4 text-secondary text-uppercase">Stadium 3D</p>
<span class="text-body"><i class="fa fa-map-marker-alt text-info me-2"></i>New Delhi</span>
</a>
<a class="portfolio-btn" href="img/portfolio-3.jpg" data-lightbox="portfolio">
<i class="bi bi-plus text-white"></i>
</a>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 portfolio-item second">
<div class="position-relative ">
<img class="img-fluid w-100" src="img/workint.jpeg" alt="">
<a class="portfolio-title shadow-sm" href="">
<p class="h4 text-secondary text-uppercase">Dream Home</p>
<span class="text-body"><i class="fa fa-map-marker-alt text-info me-2"></i>MahadevPuram Mandavar Rd,Bijnor</span>
</a>
<a class="portfolio-btn" href="img/portfolio-4.jpg" data-lightbox="portfolio">
<i class="bi bi-plus text-white"></i>
</a>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 portfolio-item first">
<div class="position-relative ">
<img class="img-fluid w-100" src="img/work.jpeg" alt="">
<a class="portfolio-title shadow-sm" href="">
<p class="h4 text-secondary text-uppercase">Construction Site</p>
<!-- <span class="text-body"><i class="fa fa-map-marker-alt text-info me-2"></i>123 Street, New York, USA</span> -->
</a>
<a class="portfolio-btn" href="img/portfolio-5.jpg" data-lightbox="portfolio">
<i class="bi bi-plus text-white"></i>
</a>
</div>
</div>
<!-- <div class="col-xl-4 col-lg-6 col-md-6 portfolio-item second">
<div class="position-relative ">
<img class="img-fluid w-100" src="img/portfolio-6.jpg" alt="">
<a class="portfolio-title shadow-sm" href="">
<p class="h4 text-secondary text-uppercase">Project Name</p>
<span class="text-body "><i class="fa fa-map-marker-alt text-info me-2"></i>123 Street, New York, USA</span>
</a>
<a class="portfolio-btn" href="img/portfolio-6.jpg" data-lightbox="portfolio">
<i class="bi bi-plus text-secondary "></i>
</a>
</div>
</div> -->
</div>
</div>
<!-- Portfolio End -->
<!-- Footer Start -->
<div class="footer container-fluid position-relative bg-dark bg-light-radial text-white-50 py-6 px-5">
<div class="row g-5">
<div class="col-lg-6 pe-lg-5">
<a href="index.html" class="navbar-brand">
<h1 class="m-1 display-6 text-uppercase text-white"><img class="display-2" style="height: 8rem; width: auto; border-radius: 43px;" src="./img/cld1.png" alt=""> <br> <br><span style="font-size: 18px; display:flex" class="d-none d-sm-block">CloudEightDesigns</span></h1>
<!-- <h1 class=" display-4 text-uppercase text-white">Cloud Eight Designs</h1> -->
</a>
<!-- <p>Aliquyam sed elitr elitr erat sed diam ipsum eirmod eos lorem nonumy. Tempor sea ipsum diam sed clita dolore eos dolores magna erat dolore sed stet justo et dolor.</p> -->
<p><i class="fa fa-map-marker-alt me-2"></i>Chakkar Road Opposite Parag Dairy, Bijnor</p>
<p><i class="fa fa-phone-alt me-2"></i>+91 753-3911-708</p>
<p ><i class="fa fa-envelope me-2"></i><span style="font-size: 16px;" class="font-monospace">[email protected]</span></p>
<div class="d-flex justify-content-start mt-4">
<!-- <a class="btn btn-lg btn-secondary btn-lg-square rounded-0 me-2" href="#"><i class="fab fa-twitter"></i></a> -->
<!-- <a class="btn btn-lg btn-info btn-lg-square rounded-0 me-2" href="#"><i class="fab fa-facebook-f"></i></a> -->
<a class="btn btn-lg btn-light btn-lg-square rounded-0 me-2" href="#"><i class="fab fa-linkedin-in"></i></a>
<a class="btn btn-lg btn-close-white btn-lg-square rounded-0" href="https://www.instagram.com/cloud_eightdesign/"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="col-lg-6 ps-lg-5">
<div class="row g-5">
<div class="m-3 col-sm-6">
<h4 class="text-white text-uppercase mb-4">Popular Links</h4>
<div class="d-flex flex-column justify-content-start">
<a style=" margin-left: 123px;" class="text-white-50 mb-2" href="index.html"><i class="fa fa-angle-right me-2"></i>Home</a>
<a style=" margin-left: 123px;" class="text-white-50 mb-2" href="about.html"><i class="fa fa-angle-right me-2"></i>About Us</a>
<a style=" margin-left: 123px;" class="text-white-50 mb-2" href="service.html"><i class="fa fa-angle-right me-2"></i>Our Services</a>
<a class="text-white-50 mb-2" style=" margin-left: 123px;" href="project.html"><i class="fa fa-angle-right me-2"></i>Works</a>
<a style=" margin-left: 123px;" class="text-white-50" href="contact.html"><i class="fa fa-angle-right me-2"></i>Contact Us</a>
</div>
</div>
<div class="col-sm-12">
<h4 class="text-white text-uppercase mb-4">Newsletter</h4>
<div class="w-100">
<div class="input-group">
<input type="text" class="form-control border-light" style="padding: 20px 30px;" placeholder="Your Email Address"><button class="btn btn-info px-4">Sign Up</button>
</div>
<p class="mb-2 move">© <a class="text-info" href="https://www.kubekode.org">kubekode.org</a>. All Rights Reserved.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid bg-dark bg-light-radial text-white border-top border-primary px-0">
<div class="d-flex flex-column flex-md-row justify-content-between">
<!-- <div class="py-4 px-5 text-center text-md-start">
<p class="mb-0">© <a class="text-primary" href="#">Your Site Name</a>. All Rights Reserved.</p>
</div> -->
<!-- <div class="py-4 px-5 bg-primary footer-shape position-relative text-center text-md-end"> -->
<!-- <p class="mb-0">Designed by <a class="text-dark" href="https://htmlcodex.com">HTML Codex</a></p> -->
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-lg btn-info btn-lg-square back-to-top"><i class="bi bi-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/tempusdominus/js/moment.min.js"></script>
<script src="lib/tempusdominus/js/moment-timezone.min.js"></script>
<script src="lib/tempusdominus/js/tempusdominus-bootstrap-4.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>