-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathFooter.html
60 lines (60 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Footer</title>
<style>
body{
padding: 0;
margin: 0;
}
.footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
display: flex;
justify-content: space-around;
background-color: #353b48;
}
.section{
padding: 5%;
font-size: larger;
color: #dcdde1;
}
.section > p :hover{
color: #f5f6fa;
}
.zero>h1{
font-family: 'Arial Black';
font-size: 3rem;
border-bottom: solid 2px white;
}
</style>
</head>
<body>
<div class="footer">
<div class="section zero">
<h1>Logo</h1>
</div>
<div class="section one">
<p>Contact Us</p>
<p>Visit Us</p>
<p>FAQ</p>
</div>
<div class="section two">
<p>Contact Us</p>
<p>Visit Us</p>
<p>FAQ</p>
</div>
<div class="section three">
<p>Contact Us</p>
<p>Visit Us</p>
<p>FAQ</p>
</div>
</div>
</body>
</html>