Build a Checkout Page - Build a Checkout Page

Tell us what’s happening:

i can’t get through test no.16,17,18
i am a bit lost and i would like some assistance

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="Magic Cube">
  </section>
        
  <section>
  <h2>Payment Information</h2>
  <form> 
  <label for="card-name">Insert your name</label>
  <input type="text" id="card-name" name="card-name" placeholder="Ex. John Davis">
            
  <p></p>
  <label for="card-number">Insert card number<span aria-hidden="true" class="mandatory">*</span></label>
  <input type="text" id="card-number" name="card-number" type="number" aria-required:"true" placeholder="Ex. 12405836" required="">
  <p></p>
  <label for="expiration-date">Insert Expiration Date<span aria-hidden="true" class="mandatory">*</span></label>
  <input id="expiration-date" name="expiration-date" type="date" aria-required="true" required="">
  </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/123.0.0.0 Safari/537.36

Challenge Information:

Build a Checkout Page - Build a Checkout Page

What are tests 16, 17, and 18?

Which specific lines of your code do you think satisfy those tests?

Welcome back to the forum @Joseph_Hangzo

I see an empty paragraph element.

Try giving it an id attribute.

Check the attribute syntax.

Happy coding