Hello there. First of all sorry for my english
I am developing the 2nd project of the course of HTML and Responsive CSS and I am with the html part of the survey right now.
The code is not finished and i have not even donde the css part yet. I want to finish first the html part and then I will create the css.
My question is, Why when I try to pass the point:
- For the name, email, and number input fields, I can see placeholder text that gives me a description or instructions for each field.’
Then it says that it’s not passed?
I have placeholder text already at this point of the project!
<label id="name-label" for="text">Nombre:</label>
<input id="text" type="text" name="text" placeholder="Pon tu nick"> <br>
<label id="email-label" for="email">Email:</label>
<input id="email" type="email" name="email" placeholder="ejemplo@ejemplo.com"> <br>
<label id="number-label" for="number">Número:</label>
<input id="number" type="number" name="number" placeholder="Número de 5 cifras"> <br>
I am going to keep developing other points of the project and making beautiful the CSS, don’t worry. But that point 11 I don’t understand it.
Thank you all.