Tell us what’s happening:
I can’t seem to continue with the test. When i click on " Run the tests" , they take me to a new coding lesson.
Your code so far
<!-- file: index.html -->
<h1 id="title">FreeCodeMap survey form</h1>
<p id="description">Thank you for taking the time to help us improve the platform</p>
<form id="survey-form">
<label id="name-label"/>Enter your name</label>
<input id="name" placeholder="Enter your name" required />
<label id="email-label"/>Enter your Email</label>
<input type="email" id="email" placeholder="Enter your Email" required />
<label id="number-label"/>Enter your Age</label>
<input type="number" min="5" id="number" max="5" placeholder="Enter your Age"/>
<select id="dropdown"/>
<option></option>
<option></option>
<input type="radio" value="name" name="Enter your name"/></input>
<input type="radio" value="name" name="Enter your name"/></input>
<input type="checkbox" value="Email"/></input>
<input type="checkbox" value="Email"/></input>
<textarea></textarea>
<button id="submit"/></button>
</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/137.0.0.0 Safari/537.36
Challenge Information:
Survey Form - Build a Survey Form