+ 1
How to create clickable menubar????
u can answer with c# ,asp.net , html, css, JavaScript. plz answer....
2 ответов
+ 1
Like that ?
https://code.sololearn.com/W475Oc74Dr0T/?ref=app
0
Multiple ways...
I recently did one with div elements and ul and li.
<div>
<ul>
<li> <a href="#" >click</a>
</li>
</ul>
</div>
This is already click able cause of the href attribute but using js/jquery and CSS you can style it, animate it and more