Build a Checkout Page - Build a Checkout Page

Tell us what’s happening:

Please could you help me?
This step won’t pass:
10. All of your input elements that aren’t a type of submit should have a label element associated with them.

Your code so far

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <title>Checkout Page</title>
</head>

<body>
 <h1>Checkout</h1>
 <section>
     <h2>Your Cart</h2>
     <img src="https://cdn.freecodecamp.org/curriculum/labs/cube.jpg"alt="a rubics cube"</img>
 </section>

 <section>
     <h2>Payment Information</h2>
     <form>
         <fieldset>
          <label for="name">Card Name: 
            <input type="text"id="card-name" value="name" name="card-name" required aria-required="true" /></label> 

         <label for="card-name">Card Number:
    <input type="text" id="card-number" name="card-number" value="1234" required aria-required="true" /></label>
    </fieldset>
     </form>
 </section>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36

Challenge Information:

Build a Checkout Page - Build a Checkout Page

are you sure you are using the correct value for the for attribute?

It passed. Thanks a lot.