freecodecamp/Certified_Full_Stack_Developer/HTML/Accessibility/Checkout_Page/index.html
2025-06-23 13:23:57 +02:00

26 lines
No EOL
839 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Check Out</title>
</head>
<body>
<h1>Checkout</h1>
<section>
<h2>Your Cart</h2>
<img src="https://cdn.freecodecamp.org/curriculum/labs/cube.jpg" alt="rubix">
</section>
<section>
<form>
<h2>Payment Information</h2>
<label for="card-name">card name:</label>
<input type="text" id="card-name" name="card-name" required aria-required="true"><br><br>
<label for="card-number">card number:</label>
<input type="text" id="card-number" name="card-number" required aria-required="true"><br><br>
<input type="submit" id=submit><br><br>
</form>
</section>
</body>
</html>