-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
95 lines (59 loc) · 2.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="footer" content="width=device-width,initial-scale=1">
<title>Footer by using CSS and HTML</title>
<link rel="stylesheet" type="text/css" href="src/css/footer.css">
<!-----google fonts link--->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2? family=Work+Sans:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-----boxicons link--->
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<style type="text/css">
.icons a>i{
color:white;
}
</style>
</head>
<body>
<!-----footer section design--->
<section class="footer">
<div class="footer-content">
<img src="logo.png">
<p>This is the official website of SLGT</p>
</div>
<div class="footer-content">
<h4>Contact</h4>
<li><a href="#">New Kandy Road,</a></li>
<li><a href="#">Malabe</a></li>
<li><a href="#">+94 1234 567</a></li>
<li><a href="#">+94 9876 543</a></li>
</div>
<div class="footer-content">
<h4>Menu</h4>
<li><a href="#">Home</a></li>
<li><a href="#">Vote</a></li>
<li><a href="#">Best Performances</a></li>
<li><a href="#">Contact Us</a></li>
</div>
<div class="footer-content">
<h4>Site Information</h4>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Accessibility</a></li>
<li><a href="#">Cookie Policy</a></li>
<li><a href="#">Privacy Notices</a></li>
</div>
</section>
<div class="icon-section">
<div class="icons">
<a href="#"><i class='bx bxl-facebook-square' ></i></a>
<a href="#"><i class='bx bxl-instagram-alt' ></i></a>
<a href="#"><i class='bx bxl-tiktok' ></i></a>
<a href="#"><i class='bx bxl-youtube' ></i></a>
<a href="#"><i class='bx bxl-whatsapp-square'></i></a>
</div>
</div>
</body>
</html>