Build a Checkout Page - Build a Checkout Page

Tell us what’s happening:

i seem to have errors for question 10 and 11 but all my code seems to be fine

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="Toy rubix cube R14,99"></section> 
<section>
<h2>Payment Information</h2>
<form method="post" action="https://payment-information.freecodecamp.org" id="payment informaion">
 <fieldset> 
<label for="card-name" id="card-name">Cardholder Name:</label>
<input type="text" id="card-name" name="card-name" placeholder="Jeff Peterson" aria-required:"true" minlength="20" maxlength="40"></fieldset>
<fieldset><label for="card-number" id="card-number">Card Number:</label>
<input for="numerical value" id="card-number" name="card-number" placeholder="1287 4553 1976 1242" aria-required:"true" min="16" max="16"></fieldset>
<fieldset><label for="Expiry Date" id="Expiry Date">Expiry Date:</label>
<input for="Date" id="Expiry Date" name="Expiry Date" placeholder="MM-YY" aria-required:"true">
</fieldset>
<fieldset>
 <label for="cvv number" id="Cvv-label">CVV:</label>
 <input for="Number" id="Cvv-label" name="Cvv-label" placeholder="712" min="2" max="3" aria-required:"true">
</fieldset>
<button type="submit" id="Submit" value="Place order">Place Order</button>
</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/138.0.0.0 Safari/537.36

Challenge Information:

Build a Checkout Page - Build a Checkout Page

This is not the correct syntax to set an attribute value.

There is no for attribute in the input element and that is an invalid id.

What are valid values for the id attribute in HTML? - GeeksforGeeks