-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
43 lines (39 loc) · 1.81 KB
/
footer.html
File metadata and controls
43 lines (39 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@latest/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@latest/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/styles.css">
<!-- Awesome font -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer">
</head>
<body>
<footer class="footer" style="background-color: #efefef;">
<div class="container text-center">
<br>
<p class="text-black mx-2">
For any questions or inquiries, please contact us at
<a href="kaptajnerne@enterprise.com" class="text-black">kaptajnerne@enterprise.com</a>
or find us on GitHub using the link below:
</p>
<div class="row">
<div class="text-center">
<a href="https://github.com/Kaptajnerne" target="_blank" style="font-size: 24px;">
<i class="fab fa-github" style="color: #000000; font-size: 36px;"></i>
</a>
</div>
</div>
<hr class="my-4">
<div class="row">
<div class="col-md-12">
<p>Copyright © 2023 - All Rights Reserved.</p>
</div>
</div>
</div>
</footer>
</body>
</html>