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