Survey Form - Build a Survey Form - story 12

Tell us what’s happening:
Console keep telling: “You should have a select field with an id of dropdown.” although I already added

Your code so far

<!-- file: index.html -->
<h1 id='title'>Title</h1>
<p id="description">short explanation</p>
<form id="survey-form">
  <label id="name-label">Name
    <input placeholder="Name" id="name" type="text" required /></label>
  <label id="email-label">Email<label>
    <input placeholder="email"id="email" type="email" required /></label>
  <label id="number-label">Phone Number
    <input placeholder="xxx" id="number"   type="number" min="7" max="12" /></label
  <select id="dropdown">
    <option></option>
    <option></option>
  </select> 
</form>

/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Looks like you didn’t end your label tag on this line

<input placeholder="xxx" id="number"   type="number" min="7" max="12" /></label

Mod edit: removed

@ShatilKhan

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

Especially do not give code out for the certification projects like this one

1 Like

Hello.

Not only in one line like says @ShatilKhan

Check all your label tags.

Grets.

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