Replies: 2 comments 1 reply
-
So, to make a footer you need to know what kind of footer u wanna make. after u know what footer you wanna make, then u can make a footer. is my answer helping? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Here’s a simple example using HTML and CSS: HTML<footer>
<p>© 2024 Your Company. All rights reserved.</p>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#privacy">Privacy Policy</a></li>
</ul>
</footer> CSSfooter {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
position: fixed;
bottom: 0;
width: 100%;
}
footer ul {
list-style-type: none;
padding: 0;
}
footer ul li {
display: inline;
margin: 0 10px;
}
footer ul li a {
color: #fff;
text-decoration: none;
}
footer ul li a:hover {
text-decoration: underline;
} Explanation
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i wanna make a footer, but i don't no where to start. can you guys help guys?
Beta Was this translation helpful? Give feedback.
All reactions