This discussion is about building a responsive registration form

Registration Form

Registration Form

Please fill out this form with the required information

Enter Your First Name: Enter Your Last Name: Enter Your Email: Create a New Password: Account type (required) Personal Business Upload a profile picture: Input your age (years): How did you hear about us? Provide a bio:
      <textarea <input id="bio"> </textarea>
    </label>
    <form>
    
   
  </fieldset>
  <label for="terms-and-conditions">
    <input id="terms-and-conditions" type="checkbox" required /> I accept the <a href="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a>
  </label>
  <input type="submit" value="Submit" />
</form>

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!

Hi @Matthew34,

The textarea needs a closing >

<textarea> <input id="bio"> </textarea>

:smile: