I've done everything what's missing?

Try checking for these User Stories:

  • 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.
  • 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.
  • If I enter an email that is not formatted correctly, I will see an HTML5 validation error(Required).
  • For the name, email, and number input fields inside the form I can see corresponding labels that describe the purpose of each field with the following ids: id=“name-label”, id=“email-label”, and id=“number-label”.
  • For the name, email, and number input fields, I can see placeholder text that gives me a description or instructions for each field.’

You can check for the ID names by using ctrl + F while selected on the required editor.
If any more doubts pls feel free to reply!

1 Like

Hey! I just checked out your website and it looks pretty cool.

One thing i would recommend is to change the color of the placeholder text inside the input elements so people with eye defects or disabilities can read them properly.
you can achieve that by adding a color property to the placeholder pseudo element.

::placeholder{
    color: #000;
}

You can also try to experiment with different combinations for the overall look of the website. If you are having trouble with coming up with a color combination, then you can also use an online tool such as this.

Hope this helps! :grinning_face_with_smiling_eyes:

1 Like

okay, Thank you for your feedback

okay thank you for your feedback I’ll check more.
I solve two problems, still 3 ty

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