0
How to create menu in html
help me how to create menu in html
3 Answers
0
just try and do experiment
<div id="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">About Us</a></li>
</ul>
</div>
then in css
#menu{
display: inline-block;
text-decoration: none;
}
ul li a{
display: block;
0
thanks for your response Code.
0
heyy