Learn HTML Forms by Building a Registration Form - Step 17

Tell us what’s happening:
I don’t understand what this code want.

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>
<input>
        <label>Enter Your First Name:</label>
        <label>Enter Your Last Name:</label>
        <label>Enter Your Email:</label>
        <label>Create a 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>
<input>
        <label>Enter Your First Name:</label>
        <label>Enter Your Last Name:</label>
        <label>Enter Your Email:</label>
        <label>Create a New Password:</label>
      </fieldset>
      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </body>
</html>

Your mobile information:

SM-A127F - Android 13 - Android SDK 33

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

Link to the challenge:

Hello!

This step requires us to add an input element between the label element text and the closing label tags. It states to make sure to leave a space after each colon : before entering the input element.

The code of the above is as follows:

<element>element text: </element>

I hope this helps you know where to enter the input element as per the instructions to be entered behind the label text.

Happy coding!:slight_smile:

Dude here we need to add input between label text

<label>Text <input></label>

Like that :blush: