-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.html
57 lines (53 loc) · 2.77 KB
/
footer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body>
<footer class="bg-dark text-white py-4">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 mb-3">
<h5>About Us</h5>
<p>We are a group of students trying to showcase our front end knowledge which only keeps growing day by day . We love to learn on the go by experimenting with things and always look forward to improving and bettering our website and skills alike</p>
</div>
<div class="col-lg-4 col-md-6 mb-3">
<h5>Quick Links</h5>
<ul class="list-unstyled">
<a class="nav-link text-white active" href="home-page.html">Home</a>
<a class="nav-link text-white" href="blog-page.html">Blog</a>
<a class="nav-link text-white" href="about-page.html">About Us</a>
<a class="nav-link text-white" href="contact-page.html">Contact Us</a>
</ul>
</div>
<div class="col-lg-4 col-md-6 mb-3">
<h5>Stay Connected</h5>
<p>Subscribe to our newsletter for the latest updates:</p>
<form action="#" method="post" class="form-inline">
<div class="input-group">
<input type="email" class="form-control" placeholder="Enter your email" aria-label="Email" required>
<div class="input-group-append">
<button class="btn btn-primary" type="submit">Subscribe</button>
</div>
</div>
</form>
<div class="mt-3">
<a href="#" class="text-white mr-2"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-white mr-2"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-white mr-2"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="text-center mt-4">
<p>© Developed By Suresh Timma | Hrushikesh | Abhinav | Ragavendra</p>
</div>
</div>
</footer>
<!-- Font Awesome for social media icons -->
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</body>
</html>