Build a Checkout Page - Build a Checkout Page

Tell us what’s happening:

Hi colleagues, pls check my code and put me through am stucked here for few days now.

Number 13, 14 and 15 or so..

Thanks for ur time.

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="cube">
    </section>
    <section>
        <h2>Payment Information</h2>
        <form>
            <label>Card Name<span aria-hidden="true">*</span></label>
            <input required id="card-name" name="card-name" type="text"/><br>
            <label>Card Number<span aria-hidden="true">*</span></label>
            <input required id="card-number" name="card-number" type="text" aria-describedby="card-number-help"/>
            <p id="card-number-help">Please enter your 16-digit card number</p>
            <input type="submit"/>
        </form>
    </section>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 26_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/149.0.7827.45 Mobile/15E148 Safari/604.1

Challenge Information:

Build a Checkout Page - Build a Checkout Page

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-checkout-page/66da326c02141df538f29ba5.md at main · freeCodeCamp/freeCodeCamp · GitHub

can you remind me how you associate an input and a label element together?

Okay thank you sir. I have properly associated them and it when through.

I appreciate.