forked from jimmy-byte/Hacktoberfest2023-codeshell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Footerbar.html
51 lines (39 loc) · 1.26 KB
/
Footerbar.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
<!-- Footer -->
<footer class="page-footer font-small special-color-dark pt-4">
<!-- Footer Elements -->
<div class="container">
<!--Grid row-->
<div class="row">
<!--Grid column-->
<div class="col-md-6 mb-4">
<!-- Form -->
<form class="form-inline">
<input class="form-control form-control-sm mr-3 w-75" type="text" placeholder="Search"
aria-label="Search">
<i class="fas fa-search" aria-hidden="true"></i>
</form>
<!-- Form -->
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-md-6 mb-4">
<form class="input-group">
<input type="text" class="form-control form-control-sm" placeholder="Your email"
aria-label="Your email" aria-describedby="basic-addon2">
<div class="input-group-append">
<button class="btn btn-sm btn-outline-white my-0" type="button">Sign up the event</button>
</div>
</form>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</div>
<!-- Footer Elements -->
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2020 Copyright:
<a href="/"> MDBootstrap.com</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->