-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
33 lines (32 loc) · 706 Bytes
/
footer.html
File metadata and controls
33 lines (32 loc) · 706 Bytes
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
<footer class="footer">
<div class="container">
<p>© 2025 All rights reserved By IMDevArt.</p>
</div>
</footer>
<style>
/* Footer Styles */
.footer {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 1rem 0;
font-size: 0.9rem;
margin-top: auto; /* Pushes the footer to the bottom in flex layouts */
}
.footer .container {
max-width: 800px;
margin: 0 auto;
}
.footer p {
margin: 0;
font-weight: 500;
}
.footer a {
color: #4c6ef5;
text-decoration: none;
font-weight: bold;
}
.footer a:hover {
text-decoration: underline;
}
</style>