Tell us what’s happening:
Describe your issue in detail here.
Could anyone help me/explain onething?
I’m in the first course of HTML and CSS, until that it’s all right… the last step of first secction it’s the survey form…
I started codding and then when i finished the HTML requirement than appears this:
and i started the second secction… is that right?
I haven’t finished the survey form!
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<html>
<body>
<h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the platform </p>
<form id="survey-form">
<input id="name" type="text" required placeholder="Enter your name"/>
<input id="email" type="email" required placeholder="Enter your Email"/>
<input id="number" type="number" required min="10" max="20" placeholder="Age"/>
<label id="name-label" >Name</label>
<label id="email-label">Email</label>
<label id="number-label">Age(optional)</label>
<select id="dropdown">
<option></option>
<option></option>
</select>
<input type="radio" value="value" name="value"></input>
<input type="radio" value="value" name="value"></input>
<input type="checkbox" value="value"></input>
<input type="checkbox" value="value"></input>
<textarea></textarea>
<input type="submit" id="submit"></input>
</form>
</body>
</html>
/* file: styles.css */
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0
Challenge: Survey Form - Build a Survey Form
Link to the challenge: