As for the email I think it’s clear enough but for the drop-down do you advice that I remove one or if two I should change their id???
And another error message was that my special characters should be close where as I closed all and the error was emphasize on the name email age line. This how I close the < name=""</>etc so which close again
I’d suggest you remove one, because the challenge only asks you to create one dropdown. You can also try to change the id of the second dropdown and see if it passes.
It might be a good idea to run your HTML code through a validator, such as https://validator.w3.org. You will get error messages for the missing <!DOCTYPE>, <html>, <head> and <body> tags that aren’t required in codepen, you can ignore those, but you’ll also get a long list of other errors within the document, one of which addresses your issue (it’s not referring to the input with id=“name”, but you used a named character reference/special character (the copyright sign) which misses a closing semicolon in order to be valid).
In the future please put the link in the body, not in the title. A link in the title is cannot be clicked.
What about the messages that you get don’t you understand?
The first message says;
If I enter an email that is not formatted correctly, I will see an HTML5 validation error.
Email field should be HTML5 validated : expected 'text' to equal 'email'
AssertionError: Email field should be HTML5 validated : expected 'text' to equal 'email'
Your code has type of text and it should be email
The next failing message says;
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".
#name-label is not defined : expected null to not equal null
AssertionError: #name-label is not defined : expected null to not equal null
@Roma has given you very helpful answers to fixing the failing user stories. I would also revisit his suggestions about the br tag and font awesome icons.