-
Notifications
You must be signed in to change notification settings - Fork 52
/
general-footer.html
121 lines (118 loc) · 2.69 KB
/
general-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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<title>Footer</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Nunito&display=swap" rel="stylesheet">
<link rel="icon" type="img/png" href="images/favicon.png">
<style type="text/css">
#footer
{
font-family: Nunito, segoe UI, sans-serif;
margin: 1rem auto;
width: 100%;
}
#footer #hr
{
width: 80%;
border: 0.5px solid rgba(0, 0, 0, 0.08);
}
#footer #nav-flex
{
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 2rem auto;
}
#footer #nav-flex .link-group
{
display: flex;
flex-direction: column;
justify-content: flex-start;
}
#footer .link-group .group-desc
{
color: #1257AE;
font-weight: bolder;
margin: 1rem 0;
}
#footer .link-group a
{
text-decoration: none;
color: rgba(0, 0, 0, 0.8);
margin: 0.15rem 0;
transition: 0.4s ease-out;
}
#footer .link-group a:hover
{
color: rgb(100, 100, 200);
}
#footer #socials
{
display: flex;
flex-direction: row;
}
#footer #socials .social-link
{
margin-right: 1rem;
border-radius: 100%;
height: 30px;
border: 2px solid white;
transition: 0.4s ease-out;
}
#footer #socials .social-link:hover
{
border: 2px solid skyblue;
}
@media (max-width: 860px)
{
#footer
{
padding-bottom: 1rem;
text-align:center;
}
#footer #nav-flex
{
flex-direction: column;
margin: 1rem 2rem;
}
#footer .link-group .group-desc
{
margin: 1.5rem 0 0.5rem;
}
}
</style>
</head>
<body>
<footer id="footer">
<hr id="hr">
<nav id="nav-flex">
<section class="link-group">
<span class="group-desc">Company</span>
<a href="">About Us</a>
<a href="">Careers</a>
</section>
<section class="link-group">
<span class="group-desc">Help & Support</span>
<a href="">FAQ</a>
<a href="">Contact us</a>
</section>
<section class="link-group">
<span class="group-desc">Legal</span>
<a href="termsofuse.html">Terms and Conditions</a>
<a href="privacy.html">Privacy Policy</a>
</section>
<section class="link-group">
<span class="group-desc">Follow Us</span>
<section id="socials" class="justify-content-center">
<a class="social-link" href=""><img src="images/facebook-icon.png" height="30px"></a>
<a class="social-link" href=""><img src="images/linkedin-icon.png" height="30px"></a>
<a class="social-link" href=""><img src="images/twitter-icon.png" height="30px"></a>
</section>
</section>
</nav>
</footer>
</body>
</html>