Quick question about dropdowns (Survey Form)

I’m currently working on my Survey Form Project. I just would like to know in which chapter did we learn about dropdowns within form elements? I am trying to review but I don’t remember covering that. I have been able to find the chapters on radio buttons, checkboxes, etc. but not dropdowns. Any help would be appreciated.

Thank You

Hello @technoblack,
I don’t really know if there is one, but if you want to make a dropdown you can use the <select> tag with the <option> tag. ex:

<select>
  <option>option 1</option>
  <option>option 2</option>
</select>

You can learn more about it here:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option

to complete some things in the projects you will need to go outside the curriculum and implement (if you have not done before) the Read-Search-Ask method, and google stuff

Yeah I inspected the sample page and saw the code, I was just trying to retrace my steps to see if it was covered in the curriculum here. Thanks for your help

1 Like