Build a Checkout Page - Build a Checkout Page

Tell us what’s happening:

Why is my step 12,14,15 is always wrong can anybody tell me

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="This is a cube">
    <p>A Cube</p>
    <p>$3.99</p>
</section>
<section>
   <h2>Payment Information</h2> 
   <form>
   <label>Cardholder Name <span aria-hidden="true">*</span></label>    
<input id="card-name" name="card-name" type="text" required>
   <label>Card Number <span aria-hidden="true">*</span></label>
   <input id="card-number" name="card-number" type="text" aria-describedby="card-number-help" required>
   <p id="card-number-help">Please enter your 16-digit card number without spaces or dashes.</p>
   </form>
</section>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Checkout Page - Build a Checkout Page

hello!

Are your inputs associated with labels using for attribute?