How to create DropDown Menu ?
SEO Help and Tips
How to create Drop-down Menu ?
Here is drop-down menu code, You can use it as gadget.
Example:
<div class="dropdown">
<button class="dropbtn">Menu</button>
<div class="dropdown-content">
<a href="https://example.com/">Home</a>
<a href="https://example.com/p/about_29.html">About</a>
<a href="https://example.com/p/contact.html">contact</a>
</div>
</div>
<style>
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
display: block;
padding: 10px;
text-decoration: none;
transition: transform 0.3s;
}
.dropdown-content a:hover {
transform: scale(1.1);
}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
Comments
Post a Comment
Thanks for your Comments.