forked from ayush-that/FinVeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.html
163 lines (159 loc) · 6.13 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.footer {
background: linear-gradient(to right, #346479, #0f2027);
color: white;
padding: 20px 0;
}
.footer-content {
display: flex;
justify-content: space-around;
align-items: flex-start;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.footer-content div {
flex: 1;
margin: 0 10px;
}
.footer-content div ul {
list-style: none;
padding: 0;
}
.footer-content div ul li {
margin: 10px 0;
color: #ffffff;
}
.footer-content div ul li a {
color: #ffffff;
text-decoration: none;
}
.footer-content div ul li a:hover {
text-decoration: underline;
}
.footer-content div ul li i {
margin-right: 10px;
}
.footer-bottom {
background-color: #0f2027;
text-align: center;
padding: 10px 0;
color: #ffffff;
}
.footer-bottom p {
margin: 5px 0;
}
.footer-icons {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.footer-icons i {
margin: 5px 0;
color: #ff8c00;
}
.footer-icons span {
margin-left: 10px;
color: #ff8c00;
}
.floating-buttons {
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
flex-direction: column;
}
.floating-buttons a {
background-color: #6a5acd;
color: white;
text-align: center;
padding: 10px;
border-radius: 50%;
margin: 5px 0;
text-decoration: none;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.floating-buttons a:hover {
background-color: #483d8b;
}
</style>
</head>
<body>
<div class="footer">
<div class="footer-content">
<div class="footer-icons">
<div><i class="fab fa-instagram"></i><span>@instagram_user</span></div>
<div><i class="fab fa-facebook"></i><span>@facebook_user</span></div>
<div><i class="fab fa-twitter"></i><span>@twitter_user</span></div>
<div><i class="fab fa-discord"></i><span>@discord_user</span></div>
</div>
<div>
<ul>
<li><i class="fas fa-user-secret"></i> Privacy Policy</li>
<li><i class="fas fa-undo"></i> Refund Policy</li>
<li><i class="fas fa-file-contract"></i> Licensing</li>
<li><i class="fas fa-file-alt"></i> Terms of Service</li>
<li><i class="fas fa-users"></i> Our Contributors</li>
</ul>
</div>
<div>
<ul>
<li><i class="fas fa-home"></i> Home</li>
<li><i class="fas fa-info-circle"></i> About Us</li>
<li><i class="fas fa-chart-line"></i> Trends</li>
<li><i class="fas fa-tools"></i> Tools</li>
<li><i class="fas fa-blog"></i> Blog</li>
<li><i class="fas fa-question-circle"></i> Quiz</li>
</ul>
</div>
<div>
<ul>
<li><i class="fas fa-envelope"></i> [email protected]</li>
<li><i class="fas fa-globe"></i> fin-veda.vercel.app</li>
<li><i class="fas fa-map-marker-alt"></i> Delhi, India</li>
<li id="social_icons" class="d-sm-flex justify-content-evenly my-3">
<div style="width: 100%; display:flex; ">
<!-- Instagram Icon -->
<a href="https://instagram.com" target="_blank" style="margin: 0 10px; color: #E4405F;" aria-label="Instagram">
<i style="font-size: 25px" class="fa-brands fa-instagram"></i>
</a>
<!-- Facebook Icon -->
<a href="https://facebook.com" target="_blank" style="margin: 0 10px; color: #4267B2;" aria-label="Facebook">
<i style="font-size: 25px" class="fa-brands fa-facebook"></i>
</a>
<!-- X/Twitter Icon -->
<a href="https://twitter.com" target="_blank" style="margin: 0 10px; color: #1DA1F2;" aria-label="Twitter">
<i style="font-size: 25px" class="fa-brands fa-x-twitter"></i>
</a>
<!-- Discord Icon -->
<a href="https://discord.com" target="_blank" style="margin: 0 10px; color: #7289DA;" aria-label="Discord">
<i style="font-size: 25px" class="fa-brands fa-discord"></i>
</a>
<!-- GitHub Icon -->
<a href="https://github.com" target="_blank" style="margin: 0 10px; color: #333;" aria-label="GitHub">
<i style="font-size: 25px" class="fa-brands fa-github"></i>
</a>
</div>
</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 FinVeda. All rights reserved</p>
<p>Made with ♥ in India</p>
</div>
</div>
<div class="floating-buttons">
<a href="#"><i class="fas fa-comment"></i></a>
<a href="#"><i class="fas fa-arrow-up"></i></a>
</div>
</body>
</html>