Tell us what’s happening:
im stuck like 3 hrs in fighting with thisim running and am bugged on 16/18 and the forum answers are very vague as to what the problem is and what it is those with the same problem are doing wrong
// running tests
16. You should have a p element with an id of card-number-help immediately after the card number input.
18. Your card number input should have aria-describedby set to card-number-help.
// tests completed
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Checkout Page</title>
</head>
<h1>
Checkout
</h1>
<section>
<img src="https://cdn.freecodecamp.org/curriculum/labs/cube.jpg" alt="Rubix Cube">
<h2>
Your Cart
</h2>
</section>
<section>
<h2>Payment Information</h2>
<form>
<label for="card-name"><span aria-hidden="true">*</span>
<input type="text" id="card-name" name="card-name" required>
<label for="card-number"><span aria-hidden="true">*</span>
<input type="text" id="card-number" name="card-number" required>
<p id="card-number-help"> Help </p>
</form>
</section>
<body>
<h2>
Your Cart
</h2>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36 Edg/144.0.0.0
Challenge Information:
Build a Checkout Page - Build a Checkout Page