Error message regarding label tag element

Still valid at the moment, maybe they're testing things out
This can be "corrected" using
<Label>Enter your name: <input type="text" ></Label>
or using this if you want an empty label
<label for="input_id" id="label_id" aria-label="Enter your name:">
<input type="text" id="input_id" name="name"> </label>
screenshot_error.jpg
Was this page helpful?