The instructions given don’t provide enough information to know that the label must be on a new line for the submission to be accepted but the hint seems to address this.
<input><label></label>
doesn’t work (with the proper attributes and properties)
but
<input>
<label></label>
or
<input> <label></label>
does work (with the proper attributes and properties)
what exactly are you asking? the challege wants you to wrapp loving in a label tag and give the label a for
attribute that matched the id of your input
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.