-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
202 lines (177 loc) · 8.89 KB
/
cart.html
File metadata and controls
202 lines (177 loc) · 8.89 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping Cart</title>
<link rel="icon"
type="image/png"
href="img/download.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/cart.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/f8fd0eaec8.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Pattaya&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Gamja+Flower&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/foot.css">
</head>
</head>
<body>
<header id="headpage">
<section>
<article>
<nav>
<div class="logo">
<i class="fas fa-leaf"></i>
Orchid
</div>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="aboutUs.html">About</a></li>
<li><a href="cart.html">Cart </a><i class="fas fa-shopping-cart"> <span
id="itemCount"></span></i></li>
</ul>
</div>
</nav>
</article>
</section>
<div id="cart-title">
<h1 class="home-title">
<span>Shopping</span>
<span>Cart</span>
</h1>
</div>
</header>
<main>
<section class="deck col-1">
<div id="cart-container" class="card">
<table id="cart">
<thead>
<tr>
<th>Shopping Items</th>
<th>Quantity</th>
<th>Price</th>
<th>Remove</th>
</tr>
</thead>
<tbody></tbody>
<tfoot>
</tfoot>
</table>
</div>
</section>
<!-- <h3 style= "font-size:30px; background-color: rgb(51, 43, 43); width:230px;height:40px;margin-left:550px;position:absolute; top:1010px;">Billing Address</h3> -->
<br></br>
<div id="clearCart">
</div>
<br></br>
<br><br>
<div class="row">
<div class="col-75">
<div class="container">
<form action="/action_page.php">
<div class="row">
<div class="col-50">
<br>
<h3>Billing Address</h3>
<br></br>
<label for="fname"><i class="fa fa-user"></i> Full Name</label>
<input type="text" id="fname" name="firstname" placeholder="Taima Al-hajjaj">
<label for="email"><i class="fa fa-envelope"></i> Email</label>
<input type="text" id="email" name="email" placeholder="Taima@example.com">
<label for="adr"><i class="fa fa-address-card-o"></i> Address</label>
<input type="text" id="adr" name="address" placeholder="airport street">
<label for="city"><i class="fa fa-institution"></i> City</label>
<input type="text" id="city" name="city" placeholder="Amman">
<div class="row">
<div class="col-50">
<label for="state">State</label>
<input type="text" id="state" name="state" placeholder="NY">
</div>
<div class="col-50">
<label for="zip">Zip</label>
<input type="text" id="zip" name="zip" placeholder="10001">
</div>
</div>
</div>
<div class="col-50">
<label for="fname">Accepted Cards</label>
<div class="icon-container">
<i class="fa fa-cc-visa" style="color:navy;font-size:30px;"></i>
<i class="fa fa-cc-amex" style="color:blue;font-size:30px;"></i>
<i class="fa fa-cc-mastercard" style="color:red;font-size:30px;"></i>
<i class="fa fa-cc-discover" style="color:orange;font-size:30px;"></i>
</div>
<label for="cname">Name on Card</label>
<input type="text" id="cname" name="cardname" placeholder="Taima Al-hajjaj">
<label for="ccnum">Credit card number</label>
<input type="text" id="ccnum" name="cardnumber" placeholder="1111-2222-3333-4444">
<label for="expmonth">Exp Month</label>
<input type="text" id="expmonth" name="expmonth" placeholder="june">
<div class="row">
<div class="col-50">
<label for="expyear">Exp Year</label>
<input type="text" id="expyear" name="expyear" placeholder="2026">
</div>
<div class="col-50">
<label for="cvv">CVV</label>
<input type="text" id="cvv" name="cvv" placeholder="352">
</div>
</div>
</div>
</div>
<label>
<input type="checkbox" checked="checked" name="sameadr"> Shipping address same as billing
</label>
<div>
<div>
<!-- <input type="submit" value="Continue to checkout" class="btn"> -->
<input type="button" value="Submit" id="myBtn" class="btn">
</div>
</section>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
<h2>Your order has been submitted !</h2>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<h3>Thank you for choosing our store</h3>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</main>
<div class="footer-basic">
<a href="#headpage"><i class="fab fa-pagelines" style="float: right;font-size:35px;"> Up </i></a>
<footer style="text-align: center;font-size:20px;">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-whatsapp"></i>
<ul class="list-inline">
<li class="list-inline-item"><a href="index.html">Home</a></li>
<li class="list-inline-item"><a href="products.html">Services</a></li>
<li class="list-inline-item"><a href="aboutUs.html">About</a></li>
<li class="list-inline-item"><a href="#">Terms</a></li>
<li class="list-inline-item"><a href="#">Privacy Policy</a></li>
</ul>
<p class="copyright">Orchid© 2021 All rights reserved </p>
</footer>
<script src="js/app.js"></script>
<script src="js/cart.js"></script>
</body>
</html>