forked from vikhyatsingh123/SlugTerra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.html
78 lines (65 loc) · 2.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="footer, address, phone, icons" />
<title>Responsive Footer</title>
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link href="http://fonts.googleapis.com/css?family=Cookie" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<h1> Responsive Footer </h1>
<h2>Have a look</h2>
<h2><span>On Below Footer</span></h2>
</header>
<!-- The content of your page would go here. -->
<footer class="footer-distributed">
<div class="footer-left">
<img src="light.png">
<h3>About<span>Eduonix</span></h3>
<p class="footer-links">
<a href="#">Home</a>
|
<a href="#">Blog</a>
|
<a href="#">About</a>
|
<a href="#">Contact</a>
</p>
<p class="footer-company-name">© 2019 Eduonix Learning Solutions Pvt. Ltd.</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p><span>7 - Dashmesh nagar,
Bldg. No. A - 15A, Sector - 3</span>
Mahape, Navi Mumbai - 400710</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>+91 9501138548</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="mailto:support@eduonix.com">support@eduonix.com</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About the company</span>
We offer training and skill building courses across Technology, Design, Management, Science and Humanities.</p>
<div class="footer-icons">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-youtube"></i></a>
</div>
</div>
</footer>
</body>
</html>