Learn HTML Forms by Building a Registration Form - Step 15

Help me please i have some type of error in my first label
It tells me to put in Enter Your First Name.

Your code so far

/* file: index.Ext.html */
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <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>Enter Your First Name</label>
        <label>Enter Your Last Name</label>
        <label>Enter Your Email</label>
        <label>Create New Password</label>
      </fieldset>
      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </body>
</html>
/* file: styles.Ext.css */
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <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>Enter Your First Name</label>
        <label>Enter Your Last Name</label>
        <label>Enter Your Email</label>
        <label>Create New Password</label>
      </fieldset>
      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </body>
</html>

Your mobile information:

9013X_EEA - Android 10 - Android SDK 29

Challenge: Learn HTML Forms by Building a Registration Form - Step 15

Link to the challenge:

You should have the exact texts here, include all punctuation marks.

You have omitted a character in this label text.

1 Like

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