-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
56 lines (53 loc) · 2.17 KB
/
footer.html
File metadata and controls
56 lines (53 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Footer</title>
<link rel="stylesheet" href="footer.css">
<!-- linked style sheet -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<!-- bootstrp -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<footer class="">
<center>
<div class="row footer_top">
<div class="footer-left col-sm-12 col-md-6">
<p class="footer-company-about d-flex justify-content-center ">
Follow Us On
</p>
<div class="footer-icons d-flex justify-content-center">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="footer-right col-sm-12 col-md-6">
<div class="d-flex justify-content-center">
<i class="fa fa-envelope"></i>
<p class="d-flex align-self-center"><a href="mailto:hyperloopiitb@gmail.com">hyperloopiitb@gmail.com</a></p>
</div>
</div>
</div>
</center>
<center>
<div class="footer_bottom">
<p class="text-muted"> Hyperloop IIT Bombay © 2020 </p>
</div>
</center>
</footer>
</body>
</html>