forked from hngi/HNGi7.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
143 lines (125 loc) · 4.38 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!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">
<!-- <title>Document</title> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!-- # To use the footer section:
#1. Make sure the 2 <link> and 2 <script> elements above or their equivalent are declared in your page's <head>
#2. Add the commented out <script> below to your page's <head> #
#3. Set an id="footer" attribute for the <div> or <section> where you want your footer to appear #
<script>
$(function(){
$("#footer").load("footer.html");
});
</script>
-->
<style>
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
a {
color: #00AEFF;
text-decoration: none;
}
a:hover {
opacity: .9;
text-decoration: none;
}
footer {
background-color: #FAFAFA;
padding: 30px 50px;
width: 100%;
}
footer .footer-header {
width: 100%;
font-weight: bold;
}
footer .footer-header .hng-logo {
color: #00AEFF;
font-weight: 800;
font-size: 1.2em;
}
footer .footer-header p {
padding-left: 37px;
margin-top: -10px;
font-size: .9em;
}
footer .footer-content {
padding-left: 0;
}
footer .footer-content-item i {
display: inline-block;
border: 1px solid #00AEFF;
border-radius: 50%;
padding: 3px 4px;
margin-right: 5px;
font-size: .8em;
font-weight: lighter;
}
footer .contact p span {
font-weight: bold;
display: block;
}
footer .address p {
width: 40%;
}
footer .socialMedia i {
border: none;
-webkit-box-shadow: 1px 1px 1px #7e7c7c;
box-shadow: 1px 1px 1px #7e7c7c;
font-size: 1.2em;
padding: 10px;
margin-right: 25px;
}
footer .footer-footer {
color: #00AEFF;
opacity: .6;
font-size: bolder;
}
</style>
</head>
<body>
<footer class="footer">
<section class="footer-header col-sm-12">
<h2><span class="hng-logo">[]</span> HNG Internship</h2>
<p>Changing the world, one intern at a time</p>
</section>
<section class="footer-content col-sm-12">
<div class="footer-content-item col-sm-3">
<h3><a href="#">Quick Links</a></h3>
<p><a href="#"><i class="fa fa-chevron-right"></i>Join HNG</a></p>
<p><a href="#"><i class="fa fa-chevron-right"></i>ABout HNG</a></p>
<p><a href="#"><i class="fa fa-chevron-right"></i>Become a partner</a></p>
<p><a href="#"><i class="fa fa-chevron-right"></i>Signup as a mentor</a></p>
</div>
<div class="footer-content-item col-sm-3 contact">
<h3><a href="#">Contact Us</a></h3>
<p><span>Phone: </span> +234 (0) 8123456789</p>
<p><span>Email: </span> [email protected]</p>
</div>
<div class="footer-content-item col-sm-3 address">
<h3><a href="#">Office Address</a></h3>
<p>Birrel Avenue, Sabo, Yaba, Lagos State</p>
</div>
<div class="footer-content-item col-sm-3 socialMedia">
<h3><a href="#">Follow Us</a></h3>
<p><a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-globe"></i></p></a>
</div>
</section>
<section class="footer-footer text-center">
© 2019, HNG Internship. All rights reserved
</section>
</footer>
</body>
</html>