Build a Checkout Page - Build a Checkout Page

Tell us what’s happening:

  1. is in my code an dit still isn’t marking it correct.

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

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36

Challenge Information:

Build a Checkout Page - Build a Checkout Page

Welcome to the forum @SJBSR

Check that:

  1. all closing tags have the correct syntax
  2. all attributes have the correct syntax

Happy coding

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