-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
27 lines (24 loc) · 856 Bytes
/
footer.php
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
<!DOCTYPE HTML>
<html>
<head>
<title>Footer</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<footer class="fixed inset-x-0 bottom-0 h-16 bg-blue-500 text-white py-4">
<div class="container mx-auto flex justify-between items-center">
<p class="text-center">Copyright © 2023 Sushil Sharma</p>
<ul class="flex justify-end">
<li class="mb-4"> <!-- Apply margin to create a gap -->
<a href="https://www.linkedin.com/in/thesushilsharma" class="hover:underline">LinkedIn</a>
</li>
<li class="mb-4"> <!-- Apply margin to create a gap -->
<a href="https://github.com/thesushilsharma" class="hover:underline">GitHub</a>
</li>
</ul>
</div>
</footer>
</body>
</html>