-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
118 lines (97 loc) · 3.41 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="body-content">
<header>
<h1 class="H1">
<img class="cactus-logo"
src="./images/cactus.jpeg"
alt="cactus logo.">
</h1>
<h1 class="H1">
STIEGLER EDTECH
</h1>
<nav>
<div class="nav-list">
<a class="list texthover" href="index.html">Home</a>
<a class="list texthover" href="productlisting.html">Products</a>
<a class="list texthover" href="mycart.html"><img src="./images/Cart.png" class="cartimg"></a>
</div>
</nav>
</header>
<h2>Checkout</h2>
<div id="checkoutALL">
<div class="cart" id="checkoutcart">
<div class="cartitem product-card">
<img src="./images/fern.jpg" class="hovernow">
<p style="font-weight: bolder;">$16.99</p>
<p>Fern</p>
</div>
<div class="cartitem product-card">
<img src="./images/monstera.jpg" class="hovernow">
<p style="font-weight: bolder;">$24.99</p>
<p>Monstera</p>
</div>
<div class="cartitem product-card">
<img src="./images/peacelily.jpg" class="hovernow">
<p style="font-weight: bolder;">$14.99</p>
<p>Peace Lily</p>
</div>
</div>
<form>
<div>
<div>First Name:</div>
<input type="text" name="fullname">
</div>
<div>
<div>Last Name:</div>
<input type="text" name="fullname">
</div>
<div>
<div>Email:</div>
<input type="text" name="email">
</div>
<div>
<div>Phone Number:</div>
<input type="text" name="phonenumber">
</div>
<div>
<div>Address:</div>
<textarea name="text"></textarea>
</div>
<div>
<div>Zip Code:</div>
<input type="text" name="zipcode">
</div>
<div>
<div>Credit Card Number:</div>
<input type="text" name="creditcard">
</div>
<div>
<div>Expiry Date:</div>
<input type="text" name="expiry">
</div>
<div>
<div>CVV:</div>
<input type="text" name="cvv">
</div>
<div>
<div id="shipping"> Shipping Method:</div>
<select name="shipping">
<option value="standard">Standard Shipping (5-8 days)</option>
<option value="express">Express Shipping (1-2 days)</option>
</select>
</div>
<button type="submit">Confirm Order</button>
</form>
</div>
<footer>© CodeMasterFlex 2024</footer>
</div>
</body>
</html>