forked from cortehz/docufix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
58 lines (57 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>%title%</title>
<style>
footer{
background-color: grey;
font-family: Ubuntu;
font-style: normal;
font-weight: bold;
padding-top: 5px;
}
footer .social {
display: inline-flex;
margin-left: 28px;
}
h1 {
font-size: 24px;
color: white;
}
p {
font-size: 18px;
color: white;
padding-left: 370px;
}
.social_media {
list-style: none;
display: inline-flex;
padding-left: 340px;
}
.fa {
font-size: 25px;
margin: 10px;
color: white;
}
</style>
</head>
<body>
<footer>
<div class="social">
<h1>DOCUFIX</h1>
<p>Copyright 2019 Docufix.io and HNG6 affiliates</p>
<div>
<ul class="social_media">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>