Problema with form survey

hey there , today I’ve been trying do this challenge but I have two fail…
can someone help me?
this is my second project so i would like to hear your replay about this code.

thank you , appreciate it guys!

Hi @itaybor15 !

I moved your post over to the #html-css section since you still need to pass two tests.


  1. 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.

I don’t see that here.

      <input  id="name" placeholder="Enter your name">
  1. Inside the form element, I am required to enter an email in a field with id="email". If I do not enter an email I will see an HTML5 validation error.

I also don’t see that here

      <input id="email" type="email" placeholder="Enter your email">

I don’t remember if this attribute was covered in the FCC lessons or not.

If you google “How do you make required in HTML?” then you will get the answer you are looking for to pass both tests.

I don’t understand ; that already in my code and still I don’t pass those mission

So I would look into the last sentence that @jwilkins.oboe wrote:

If you google “How do you make required in HTML?” then you will get the answer you are looking for to pass both tests.

1 Like

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