+ 1
How to add a drop down menu
2 Answers
+ 1
The simple syntax for dropdowns in HTML looks like this:
<select>
<option>HTML
<option>CSS
<option>JavaScript
</select>
This is the simple piece of code, when you click on it, three options appear to you.
More interactive dropdowns can be made by adding CSS and JavaScript. If you want to learn that then log on to w3schhols.com
0
Thanks