Nesting html select elements within a label


I don’t know where I went wrong

Please post your actual code instead of a picture. Also, please post a link to the challenge. Thanks

   <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>

The test is being a little extra strict. It wants the label text on the same line as the opening label tag.

:joy: :sob:

I was about to procrastinate

Thank you @JeremyLT

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.