https://codepen.io/Ihenx/pen/gOaxwWo

Tell us what’s happening:

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36.

Challenge: Build a Survey Form

Link to the challenge:

can somebody help with this challenge

Do you have questions? You forgot to fill out “Tell us what’s happening” and you did not paste your code into your post.

i’m stuck with this survey form project
here is my code
https://codepen.io/Ihenx/pen/gOaxwWo

Where are you stuck? What is your question? No one wants to guess what you’re having a problem with.

1 Like

it has to do with HTml validation error even when my input form has the id=“name”

You’re using an id more than once. An id must be unique within the document.

Don’t make it hard on yourself. Just have one name field.

Edit: I should have read the error message. When a test fails you can click on the red button and then read what the test was looking for and see why it is failing. In this case the error message says;

Inside the form element, I am required to enter my name in a field with id="name". If I do not enter a name I will see an HTML5 validation error.

Name input field should be required : expected false to be truthy

You haven’t made it required

ok thanks for your time

@godspoweriheanachoc, I edited my post. Please read it for add’l information.