PROBLEM: Step 30 Nest the select element within a label element with the text How did you hear about us?. The text should come before the select element.
MY SOLUTION: How did you hear about us?
QUESTION: What am I not understanding? I keep getting a failure? Your help is appreciated - thank you.
I really want to help you but I just need more information. Information such as what your source code looks like and the title of what you making is very important for others to help you. Thank you for giving me the step number. Here is the code for a success on building a HTML form step 30:
<fieldset>
<label>Upload a profile picture: <input type="file" /></label>
<label>Input your age (years): <input type="number" min="13" max="120" />
</label>
<label>How did you hear about us?
<select>
<option></option>
<option></option>
<option></option>
<option></option>
<option></option>
</select>
</label>
</fieldset>