Build a Survey Form challange

Hello, so i recently started doing Build a Survey Form challange. I understood and managed to finish it but for some reason it shows only 14/17. Here’s my codepen: https://codepen.io/uzi445/pen/RwZQXaQ

Any help would be appreciated.

There should be an input text field with id=“name” : expected null to not equal null
AssertionError: There should be an input text field with id=“name” : expected null to not equal null

Your code
<input type="text" id=”name” name=”name” placeholder="Name" required>

This one’s subtle, you did (almost) everything correctly. Can you spot the difference?

What it should be
<input type="text" id="name" name="name" placeholder="Name" required>

Well done so far. You’re obviously making good progress.
Keep up the good work :slight_smile:

12. Inside the form element, I can select an option from a dropdown that has corresponding id=“dropdown”.

Ooops, I can see something slightly awry

Your code
<select name="list1" id=”dropdown”>
Correct code
<select name="list1" id="dropdown">

thank you, after fixing two of these errors it finally said 17/17 :slight_smile:

1 Like

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