Check out page example code

hi. doing the checkout page for the accessibility section. so it passed, but not showing me the placeholder text mm/yy and one of my fields says card-date. is this wrong or something querky. using firefox. so will paste my code if thats okay.
marvin.
ps: pasting now.

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Check out</title>
    </head>
    <body>
        <h1>Checkout</h1>
        <section>
            <img src="https://cdn.freecodecamp.org/curriculum/labs/cube.jpg" alt="Left Hand Spoon" />
        <h2>Your Cart</h2>
        </section>
        <section>
<h2>Payment Information</h2>
        <form>      
<label for="card-name">Cardholder Name</label>
<input type="text" id="card-name" name="card-name" value="card-name" aria-required="true" required>
<label for="card-number">Card Number</label>
<input type="number" id="card-number" name="card-number" value="card-number" required>
<label for="card-date">Expiry Date</label>
<input type="text" id="card-date" name="card-date" value="card-date" placeholder="mm/yy" required>
<label for="cvv">Card Verification Value</label>
<input type="text" id="cvv" name="cvv" value="cvv" aria-required="true" required>
<button type="submit">Place Order</button>
        </section>
        </form>
    </body>
</html>

I’ve edited your post to improve the readability of the code. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

you have a nesting issue, you open the section, then open the form element, but you first close the section than you close the form element, that’s wrong. the form element needs to be closed first, then you can close the section element.

can you share a link to the project?