forked from ayush-that/FinVeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.html
167 lines (144 loc) · 5.61 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
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="./assets/css/index.css">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
/* Footer Wrapper */
/* added css to row*/
.row{
margin-top: 60px; /*added margin*/
}
.footer-wrapper {
background-color: #0f2027; /* Footer background */
color: white; /* Text color */
/* padding: 20px 0; Overall padding */
margin : 0;
padding : 0;
text-align: left;
}
/* Footer Divider */
.footer-divider {
border: none;
border-top: 2px solid #ccc; /* Ruler line color */
/* margin: 20px 0; Margin around the divider */
}
/* Footer Widget */
/* .footer-widget {
padding-bottom: 50px; Bottom padding for footer widget
} */
/* Footer Titles */
.footer-title {
font-size: 20px; /* Font size for titles */
font-weight: bold; /* Bold font for titles */
margin-bottom: 15px; /* Space below titles */
margin-left: 0px; /*added margin left*/
}
/* Footer Links */
.footer-links {
list-style: none; /* No list styling */
padding: 0; /* No padding */
}
.footer-links li {
margin: 5px 0; /* Space between list items */
}
.footer-links a {
color: white; /* Link color */
text-decoration: none; /* No underline */
transition: color 0.3s; /* Smooth color transition */
}
.footer-links a:hover {
color: #ff8c00; /* Highlight color on hover */
}
/* Contact Section */
.contact {
list-style: none; /* No list styling */
padding: 0; /* No padding */
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.footer-widget {
padding-bottom: 5px; /* Adjusted padding for mobile */
}
.footer-title {
font-size: 14px; /* Smaller font size for mobile */
}
.footer-links li,
.contact li {
margin: 3px 0; /* Less margin for mobile */
}
}
</style>
</head>
<body>
<div class="footer-wrapper">
<hr class="footer-divider"> <!-- Horizontal line above the footer
<div class="footer-widget pb-50"> <!-- Adjusted padding -->
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="footer-about mt-20 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.2s"> <!-- Adjusted margin -->
<p class="text">
We at FinVeda aim to make you a stock market Guru easily with our AI-powered teaching and financial blogs.
</p>
</div>
</div>
<div class="col-lg-5 col-md-7 col-sm-7">
<div class="footer-link d-flex mt-20 justify-content-between"> <!-- Adjusted margin -->
<div class="link-wrapper wow fadeIn" data-wow-duration="1s" data-wow-delay="0.4s">
<h4 class="footer-title">Quick Links</h4> <!--changed h3 to h4-->
<ul class="footer-links">
<li><a href="./blogs/privacy-policy.html">Privacy Policy</a></li>
<li><a href="./blogs/refund-policy.html">Refund Policy</a></li>
<li><a href="Licensing.html">Licensing</a></li>
<li><a href="./blogs/terms-of-service.html">Terms of Service</a></li>
<li><a href="./contributors.html">Our Contributors</a></li>
</ul>
</div>
<div class="link-wrapper wow fadeIn" data-wow-duration="1s" data-wow-delay="0.6s">
<h4 class="footer-title">Resources</h4>
<ul class="footer-links">
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="./trends.html">Trends</a></li>
<li><a href="./tools/sip.html">Tools</a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="./quiz.html">Quiz</a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-5 col-sm-5">
<div class="footer-contact mt-20 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.8s"> <!-- Adjusted margin -->
<h4 class="footer-title">Contact Us</h4>
<ul class="contact">
<li><i class="fa fa-envelope"></i><a href="mailto:ayush1337@hotmail.com">ayush1337@hotmail.com</a></li>
<li><i class="fa fa-globe"></i><a href="https://fin-veda.vercel.app">fin-veda.vercel.app</a></li>
<li><i class="fa fa-location-dot"></i><a href="#">Delhi, India</a></li>
<li id="social_icons" class="d-flex justify-content-between mt-2"> <!-- Adjusted margin -->
<a href="https://instagram.com"><i class="fa-brands fa-instagram"></i></a>
<a href="https://facebook.com"><i class="fa-brands fa-facebook"></i></a>
<a href="https://twitter.com"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://discord.com"><i class="fa-brands fa-discord"></i></a>
<a href="https://github.com"><i class="fa-brands fa-github"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<hr class="footer-divider"> <!-- Ruler line after the footer -->
<!-- Copyright Section -->
<div class="footer-copyright text-center mt-20 wow fadeIn" data-wow-duration="1s" data-wow-delay="0.8s"> <!-- Adjusted margin -->
<p>© <span id="copyright-year">2024</span> FinVeda. All rights reserved. Made with ♥ in India</p>
</div>
</div>
</body>
</html>