My project: https://codepen.io/maurerlajos1/pen/abmYrRy
Don’t watch the styling yet I want to pass all the tests before adding any additional styling with Css.
My first error is with the name. I didn’t really found any name attribute for input type that get an Html5 validation error. So I used text type and pattern to validate.
<label for="name" id="name-label" >Name</label>
<input type="text" id="name" placeholder="Mr. Jones" pattern="[A-Za-z]"></input>
And I don’t know why I get an error for email. I put the emali type into the input tag:
<label for="email" id="email-label" >Email</label>
<input type="email" id="email" placeholder="nobody@who.com"></input>