How to Create Website Footer Menu ?
SEO Help and Tips
How to Create Website Footer Menu ?
Here is example code of footer colorful menu:
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colorful Footer Menu</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.footer {
background-color: #333;
color: white;
padding: 20px;
display: flex;
justify-content: center;
}
.footer-menu {
list-style: none;
display: flex;
gap: 20px;
}
.menu-item {
font-size: 16px;
text-decoration: none;
color: white;
transition: color 0.3s;
}
.menu-item:hover {
color: #FF5733; /* Change color on hover */
}
</style>
</head>
<body>
<div class="footer">
<ul class="footer-menu">
<li><a href="https://www.example.com" class="menu-item">Home</a></li>
<li><a href="https://www.example.com/about" class="menu-item">About Us</a></li>
<li><a href="https://www.example.com/services" class="menu-item">Services</a></li>
<li><a href="https://www.example.com/portfolio" class="menu-item">Portfolio</a></li>
<li><a href="https://www.example.com/contact" class="menu-item">Contact</a></li>
</ul>
</div>
</body>
Comments
Post a Comment
Thanks for your Comments.