-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
104 lines (81 loc) · 3.46 KB
/
footer.html
File metadata and controls
104 lines (81 loc) · 3.46 KB
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
<!--
$('#header').load('includes/header.html')
$('#footer').load('includes/footer.html')
-->
<!-- Start Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h2>My web site</h2>
<p style="padding-top: 20px;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Dignissimos voluptatum
similique cupiditate nam!</p>
</div>
<div class="col-sm-4 links">
<h2> Important Links</h2>
<ul>
<li><a href="index.html"> - Home</a></li>
<li><a href="contact_us.html"> - Contact US</a></li>
<li><a href="index.html#our-team"> - Our Team</a></li>
<li><a href="index.html#recent-news"> - Recent News</a></li>
<li><a href="blog.html"> - Blogs</a></li>
</ul>
</div>
<div class="col-sm-4">
<h2 class="ms-5 mb-2">Follow US</h2>
<ul class="mt-2 ">
<a href="#"> <i class="fab fa-facebook rounded-circle fa-3x me-2 "></i></a>
<a href="#"><i class="fab fa-twitter rounded-circle fa-3x me-2"></i></a>
<a href="#"><i class="fab fa-linkedin rounded-circle fa-3x me-2"></i></a>
<a href="#"><i class="fab fa-github-square rounded-circle fa-3x me-2"></i></a>
</ul>
</div>
</div>
</div>
<div class="footer1">
<div class="container">
<div class="row">
<div class="col">
<a href="#">
<p> Copyright <i class="far fa-copyright"></i> 2023 Osama Sultan - Web Developer</p>
</a>
</div>
</div>
</div>
</div>
</footer>
<!-- Modal -->
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"
aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="staticBackdropLabel">Login</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<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="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Understood</button>
</div>
</div>
</div>
</div>
<!-- End Footer -->