Tell us what’s happening:
Describe your issue in detail here.
the tests are not recognizing my code in spite of me including the id=“name” and id=“email”
Your code so far
<body>
<div>
<h1 id="title"> Short Survey </h1>
<p id="description"> Just some quick random questions</p>
</div>
<div>
<form id="survey-form">
<label for="name" id="name-label">Name:<label><br>
<input type="text" id="name" placeholder="enter your name"/><br>
<label for="email" id="email-label">Email:<label><br>
<input id="email" type="email" placeholder="enter with @email.com"/><br>
<label for="number" id="number-label">Number:</label><br>
<input type="number" id="number" min=18 max=80 placeholder="num"><br>
<label for="dropdown">Sex:<label>
<select id="dropdown">
<option>Male</option>
<option>Female</option>
<option>Other</option>
</select><br>
<input type="radio" value="less21" name="age">
<label for="less21"> less than 21</label><br>
<input type="radio" value="greater21" name="age">
<label for="greater21"> greater than 21</label><br>
<input type="checkbox" value="blue">
<label for="blue">blue</label><br>
<input type="checkbox" value="green">
<label for="green">green</label><br>
<input type="checkbox" value="red">
<label for="red">red</label><br>
<label for="comments">Comments:</label><br>
<textarea id="comments" rows="4" column="50"></textarea><br>
<input type="submit" id="submit">
</div>
</body>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36
Challenge: Build a Survey Form
Link to the challenge: