How do I make a dropdown in my website?

I am doing the survey form project on FCC, and they tell me to make a dropdown in the form. Well, the problem is, I dont know how. They didnt teach me that. Can you help me?

BUILD A SURVEY FORM (codepen.io)

Hi!

Hope this helps!
This is the code I used in my survey form.

hey @Colewave188,

You can make one the the select and option tags

<select name="cars" id="cars">
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.