-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.html
56 lines (51 loc) · 2.04 KB
/
checkout.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>StarBucks</title>
<link href="normalize.css" rel="stylesheet" type="text/css">
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://kit.fontawesome.com/621175abe2.js" crossorigin="anonymous"></script>
</head>
<body>
<img class="checkout-bg" src="https://wallpapercave.com/wp/wp2249420.jpg" alt="starbucksbackground">
<!-- Top Navigation Bar -->
<nav>
<a href="index.html"><img id="starbuckslogo" src="https://shop.starbucks.com.sg/images/logo.svg"
alt="starbuckslogo"></a>
<ul>
<li><a href="product.html">Merchandise</a></li>
<li><a href="cart.html"><i class="fa-solid fa-bag-shopping fa-2x" style="color:white"></i></a></li>
</ul>
</nav>
<!-- Checkout Form -->
<form method="POST">
<h1 id="checkout-h1">CheckOut</h1>
<h2 id="checkout-h2">Payment Information</h2>
<label>Cardholder Name<br>
<input class="checkout-input" type="text" placeholder="name" required><br>
</label>
<label>Card Number<br>
<input class="checkout-input" type="number" placeholder="name" required><br>
</label>
<label>Card type<br>
<select class="checkout-input" name="cars" id="cars">
<option value="">--Select a Card Type--</option>
<option value="Visa">Visa</option>
<option value="MasterCard">MasterCard</option>
</select>
</label>
<br>
<label>Address<br>
<input class="checkout-input" type="text" placeholder="address" required><br>
</label>
<label>Expiry
<input class="checkout-input" id="expiry" type="date" required>
</label>
<label>CVV
<input class="checkout-input" id="date" type="password" required>
</label>
<button type="submit" class="submit-btn">CheckOut</button>
</form>
</body>
</html>