Build a Checkout Page - Build a Checkout Page

Tell us what’s happening:

Test 16 is not passing but 17 passed.
Here is my code:
Card Number:
*

Please enter your 16 digits card number without spaces or dashes.

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://i.ibb.co/N2jLTrVb/cart.jpg" alt="At center sits a silver chain tangled into a loose loop, from which hangs a bright, glittering heart pendant — a deep, jewel-red filled with tiny sparkles that catch the light like crushed glass trapped in resin. Flanking it are two matching drop-shaped charms, the same ruby-red and sparkly texture, set in shiny silver bezels and suspended from simple fishhook earring wires." border="0">
</section>
<section>
    <h2>Payment Information</h2>
        <form>
            <label for="card-name">Card Name: 
                <span aria-hidden="true">*</span>
                <input id="card-name" name="card-name" type="text" required>
            </label>
            <label for="card-number">Card Number:
                <span aria-hidden="true">*</span>
                <input id="card-number" name="card-number" type="text" required aria-describedby="card-number-help">
                <p id="card-number-help">Please enter your 16 digits card number without spaces or dashes.</p> 
            </label>
                
</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/143.0.0.0 Safari/537.36

Challenge Information:

Build a Checkout Page - Build a Checkout Page

are you sure that you should put all that in the label? please double check the user stories

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