I need help please, I’m able to pass 16 from 17 tests for the survey form project, gone through the code and I still can’t figure what the issue is.
https://codepen.io/ayodeleod/pen/OJyRXqP
Stylebunker Survey Form
Thank you for taking time to help improve our processes
<label id="name-label" for="name">
<p>Name:</p>
<label id="email-label" for="email">
<p>Email:</p>
</label>
<input id="email" type="email" placeholder="Enter your email" required>
<label id="number-label" for="number">
<p>Age:</p>
</label>
<input id="number" type="number" placeholder="Enter your age" min="10" max="50" required>
<p>Which option best describes your shoe style?</p>
<select id="dropdown">
<option value="heels">Heels</option>
<option value="flats">Flats</option>
<option value="slippers">Slippers</option>
<option value="sandals">Sandals</option>
<option value="sneakers">Sneakers</option>
</select>
<div>
<p>Would you shop with Stylebunker again?</p>
<input type="radio" name="user-recommend" value"definitely">Definitely</input>
Maybe
Not sure
No
What is your favorite experience with Stylebunker?
<input type=“checkbox” name"favorite" value=“excellent-customer-service”>Excellent Customer Service
<input type=“checkbox” name"favorite" value=“seemless-payment-process”>Seemless Payment Process
<input type=“checkbox” name"favorite" value=“fast-delivery”>Fast Delivery
Add your comment here…

