What is wrong with this code snippet?
<label>Address:</label> <input type="text" name="address" id="address-input" />
The <label> and <input> should be nested inside of a <fieldset> element.
<label>
<input>
<fieldset>
"address" is not a valid value for the attribute name on an <input> element.
The <label> element is missing an id set to "address-input".
The <label> element is missing a for attribute set to "address-input".