Learn HTML Forms by Building a Registration Form - Step 39

  <fieldset>
    <label for="profile-picture">Upload a profile picture: <input id="profile-picture" type="file" /></label>
    <label for="age">Input your age (years): <input id="age" type="number" min="13" max="120" /></label>
    <label for="bio">How did you hear about us? <input id="bio">
      <select> <input id="referrer"></input>
        <option value="">(select one)</option>
        <option value="1">freeCodeCamp News</option>
        <option value="2">freeCodeCamp YouTube Channel</option>
        <option value="3">freeCodeCamp Forum</option>
        <option value="4">Other</option>
      </select>
    </label>
    <label for="bio">Provide a bio:><input id="bio"></input>
      <textarea></textarea>
    </label>
  </fieldset>

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

Thank you for the help but I was able to get over it!