I want dropdown menu . Any one give me html code . | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

I want dropdown menu . Any one give me html code .

26th Aug 2020, 9:51 AM
Anmol
Anmol - avatar
6 Answers
+ 4
https://www.w3schools.com/howto/howto_css_dropdown.asp you can find some helpful codes on w3schools too. But try to learn on your own. That'll help more.
26th Aug 2020, 10:00 AM
shashuri Magrease
shashuri Magrease - avatar
+ 3
What you mean by "anyone give me html code" ? Ask only specific questions ,it's not a code delivery platform ,use your feed or personal messages for that stuff
26th Aug 2020, 10:04 AM
Abhay
Abhay - avatar
+ 1
Practice yourself bro
26th Aug 2020, 9:52 AM
Sâñtôsh
Sâñtôsh - avatar
+ 1
<select> </select>
26th Aug 2020, 10:00 AM
Siddharth Sundar
Siddharth Sundar - avatar
+ 1
<ul id="menu"> <li class="item">item1</li> <li class="item">item2</li> <li class="item">item3</li> </ul> CSS .item{ display:none; } #menu:hover .item{ display:block; }
26th Aug 2020, 10:27 AM
Shadoff
Shadoff - avatar
0
Search dropdown in code{} section And don't forget to ask and credit code owner before using his/her code.(no need for idea but do it if you copying the code .)
26th Aug 2020, 1:41 PM
Divya Mohan
Divya Mohan - avatar