Michael R. answered 10/12/19
Tutor
New to Wyzant
Junior Web Developer and Math Tutor
You can do the dropdown menu with just the <select> tag, with each selection using an <option> tag. This is just using HTML.
With CSS you can do many things to style it. I would recommend googling "css select tags" for reference.
See example below.
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>