freecodecamp/Certified_Full_Stack_Developer/HTML/Accessibility/Checkout_Page/index.html
2025-06-23 12:49:08 +02:00

24 lines
No EOL
593 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>
<input>
<h2>Payment Information</h2>
<input id="card-name" id="card-name" >
<input id="card-number" id="card-number">
</form>
</section>
</body>
</html>