hi im really frustrated with the survey form, like one minute my code is working next minute it;s not. im really hoping that their is a glitch and im not crazy. i keep getting the message: * Your #email-label should contain text that describes the input.
Failed:Your #number-label should contain text that describes the input.
but my #name-label is structed the same way with no problem.
<fieldset>
<label for='name’id=‘name-label’>
<input id='name’type='text’required name='name’placeholder=‘Please Enter YourName’>
<label for='email’id=‘email-label’><input id=‘email’ type=‘email’ name='email’required class="inline"placeholder=‘Please Enter Your Email’>
<label for='number’id=‘number-label’><input name='number’id=‘number’ class="inline"type=‘number’
hi Dobar, thanks i added text to the email and number but the name label didn’t require, although the test results says that text is in my name label. i don’t understand why we have placeholders if we are adding text. Guess it’s about appearance. thanks for the support, have a great day!! #freecodecampSupport
Placeholder text is guidance entered in an input text field before you start to type in something (kind of explanatory text about that field). The text between ‘label’ tags is “real” text on your web page, and it will not disappear when you enter something in the text field.
Make always a blank space between attributes. Both ‘value’ attributes haven’t the same single quotes. Check it out. If you remedy this the text will show up.