Learn HTML Forms by Building a Registration Form - Step 1

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


<!-- User Editable Region -->

<!DOCTYPY html>
<html lang="en">
  <head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Registration Form project</title>
  <link rel="stylesheet" href="styles.css">
  </head>
  <body>
    <h1>Registration Form</h1>
      <form>
        <label for="first-name">First Name</label>
        <input id="first-name"type="text" name="first-name" placeholder="your first name">
         <label for="last-name">Last Name</label>
        <input id="last-name" type="text" name="last-name" placeholder="your last name">
        <label for="last-name">Email</label>
        <input id="email" type="text" name="email" placeholder="your email">
        <label for="password">Password</label>
        <input id="password" type="text" name="password" placeholder="your password">
      </form>  

      <button for="submit">Submit</submit>

  </body>
</html>

<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:109.0) Gecko/20100101 Firefox/109.0

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

Link to the challenge:

Hi!

I just created Registration Form, but I stiil get “Sorry, your code does not pass. Try again”.

please I need an assistant.

Hi!

I just created Registration Form, but I stiil get “Sorry, your code does not pass. Try again”.

please I need an assistant.

did you look at the hint?

i see a typo in your <DOCTYPE html> tag change the y to a e and that should work

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