Step 30 of Building a Registration Form

I’m on step 30 of “Learn HTML Forms by Building a Registration Form”. Not sure what I’m doing wrong since the text is before the select element nested inside the label element. Any help would be appreciated. Thanks in advance!

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

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

1 Like

This test is being a bit too strict - it wants these two on the same line.

1 Like

That worked! Thank you!

1 Like

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