Build a Checkout Page - Build a Checkout Page

Tell us what’s happening:

help im stuck on step 3 did i typo some where or something?

  1. You should have at least two section elements after the h1 element.

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>
    <a><img src="https://cdn.freecodecamp.org/curriculum/labs/cube.jpg" alt="rubick" />
    <p>rubic for free</p> 
    </section>

    <section>
    <h2>Payment Information</h2>
    <form>
        <label for="card-name">Card Name:</label>
        <input id="card-name" name="card-name" aria-required="true" required />
        <label for="card-number">Card Number:</label>
        <input id="card-number" name="card-number" aria-required="true" required />
        <div>
        <button id="ill-take" name="ill-take" type="button">ill take</button>
        </div>
    </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/134.0.0.0 Safari/537.36

Challenge Information:

Build a Checkout Page - Build a Checkout Page

Hi there Welcome to community, you’re missing the closing </a> tag for the <a> element. Try adding it and see if it works!

owh yeah i did thanks its amazing you can spot that small thing

No problem, bro! Sometimes small things like that are easy to miss. Glad I could help! :+1: