mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2025-12-23 17:09:59 +01:00
24 lines
No EOL
593 B
HTML
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> |