Building Registration app form

I cannot proceed from here please help :

<meta charset="UTF-8">

<title>Registration Form</title>

<link rel="stylesheet" href="styles.css" />
<h1>Registration Form</h1>

<p>Please fill out this form with the required information</p>

<form method="post" action='https://register-demo.freecodecamp.org'>

  <fieldset>

    <label for="first-name">Enter Your First Name: <input id="first-name" type="text" required /></label>

    <label for="last-name">Enter Your Last Name: <input id="last-name" type="text" required /></label>

    <label for="email">Enter Your Email: <input id="email" type="email" required /></label>

    <label for="new-password">Create a New Password: <input id="new-password" type="password" pattern="\[a-z0-5\]{8,}" required /></label>

  </fieldset>

  <fieldset>

    <legend>Account type (required)</legend>

    <label for="personal-account"><input id="personal-account" type="radio" name="account-type" checked /> Personal</label>

    <label for="business-account"><input id="business-account" type="radio" name="account-type" /> Business</label><fieldset>

Upload a profile picture:

Input your age (years):

How did you hear about us?

<select id="referrer" name="referrer">

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

Provide a bio:

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.