Learn HTML Forms by Building a Registration Form - Step 2

Tell us what’s happening:
Describe your issue in detail here.
html tags in incorrect order

  **Your code so far**
<!DOCTYPE html>
<html lang="en">
<html>
<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 >
      <fieldset>
      <label>Enter Your First Name: 
  <input type="text"  name="first name" required/></label>
  
      <label>Enter Your Last Name: 
      <input type="text"  name="last name" required/></label> 
    
       <label> Enter Your Email: 
        <input type="email" name="my email"id="name>" required/></label>
        
        <label>Create a New Password:
          <input type="password" name="my password"id="password>"required/></label>
          <div>
            Personal Account<input type="radio" name="personal account"id="personal account>"
            
          <div> 
            Business Account<input type="radio" name="business account"id="business account>"
            </div>
           <div>
            I accept the terms and conditions<input type="checkbox" name="terms and conditions required/"> I accept  <a href="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a>
        
              </html>
              
            
           




  **Your browser information:**

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

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

Link to the challenge:

Can you be more specific? I don’t know what you mean.

All of this seems unrelated to Step 2. Did you copy code from several steps ahead of this one?

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