-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
67 lines (62 loc) · 3.13 KB
/
footer.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Footer</title>
<style>
footer a {
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<footer>
<div class="footer-top flex">
<div class="footer-left">
<div class="flex align-center">
<h2>Follow Us</h2>
<a href="https://twitter.com"><i class="fa fa-twitter-square" style="font-size:32px; color: white;"></i></a>
<a href="https://facebook.com"><i class="fa fa-facebook-square" style="font-size:32px; color: white;"></i></a>
<a href="https://instagram.com"><i class="fa fa-instagram" style="font-size:32px; color: white;"></i></a>
<a href="https://youtube.com"><i class="fa fa-youtube-play" style="font-size:32px; color: white;"></i></a>
<a href="https://linkedin.com"><i class="fa fa-linkedin-square" style="font-size:32px; color: white;"></i></a>
</div>
<div class="flex align-center myt-40">
<div class="logo" style="margin-right: 25px; color: white"><a href="index.php">E - News</a></div>
<div class="footer-pages flex align-center">
<a href="/Main/index.php">Home</a>
<a href="/Main/OtherPages/aboutus.php">Company</a>
<a href="/Main/OtherPages/contactus.php">Help</a>
<a href="/Main/OtherPages/reviewus.php">Rate Us</a>
</div>
</div>
</div>
<div class="footer-right">
<h2>About E - News</h2>
<span>
Welcome to E - News, your trusted source for the latest news and updates. We are dedicated to providing you with accurate and timely news from around the world. Our mission is to empower you with knowledge and keep you informed about the events that matter most.
</span>
</div>
</div>
<div class="footer-bottom" style="margin-top: 40px;">
<div class="flex align-center justify-space-between">
<a href="https://github.com/ommaniya70/NEWS-WEBSITE.git" style="color: white; text-decoration: none;">
<div class="footer-github-repo flex align-center">
<i class="fa fa-github-square" style="font-size:48px; color: white;"></i>
<span>Explore on GitHub</span>
</div>
</a>
<a href="mailto:newswebsite02@gmail.com" style="margin-right: 60px;">
<div class="flex align-center">
<i class="fa fa-question-circle" aria-hidden="true" style="font-size: 40px;"></i>
<span>Contact Now</span>
</div>
</a>
</div>
<div class="flex justify-center">© 2023 E - News, Inc. All rights reserved</div>
</div>
</footer>
</body>
</html>