-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
49 lines (46 loc) · 1.82 KB
/
footer.html
File metadata and controls
49 lines (46 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/footer.css">
</head>
<body>
<!--
Footer
-->
<footer>
<div class="row row-a">
<div class="col col-a">
<figure class="logo">
<a href="#"><img src="images/Swasth-inverted-logo.png" alt="Logo"></a>
</figure>
<p class="copyright-desktop">Copyright@2023</p>
</div>
<div class="col col-b">
<h2>Quick Links</h2>
<ul>
<li><a href="#">GET INVOLVED</a></li>
<li><a href="newsroom.html">NEWSROOM</a></li>
<li><a href="#">TECH BLOG</a></li>
</ul>
</div>
<div class="col col-c">
<h2>Social Links</h2>
<ul>
<li><a href="https://www.facebook.com/swasthorg/" target="_blank"><i class="bx bxl-facebook"></i> FACEBOOK</a></li>
<li><a href="https://twitter.com/swasthorg/" target="_blank"><i class="bx bxl-twitter"></i> TWITTER</a></li>
<li><a href="https://www.linkedin.com/company/swasthorg/" target="_blank"><i class="bx bxl-linkedin"></i> LINKEDIN</a></li>
</ul>
</div>
<div class="col col-d">
<h2>Contact Information</h2>
<p>No. 881, 6th Cross, Koramangala Club Road, 6th Block, Koramangala, Bangalore, Karnataka-560095</p>
<p class="copyright-mobile">Copyright@2023</p>
</div>
</div>
</footer>
</body>
</html>