-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
184 lines (173 loc) · 5.72 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
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
<!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>Checkout Page</title>
<link rel="stylesheet" href="checkout.css" />
</head>
<body>
<div id="main">
<div class="headerdiv">
<div class="header">
<img
src="https://img.shop.com/Image/resources/logos/shop-logo-us-cancer.svg"
alt=""
/>
<a href="index.html">Continue Shopping</a>
</div>
</div>
<div class="formhead">
<h1>Checkout</h1>
<div class="processbar">
<div class="prc1"><p>Address</p></div>
<div class="prc2"><p>Shipping Details and Payment</p></div>
</div>
</div>
<div class="form1">
<p style="color: #545871">* Indicates required field</p>
<label for=""
>Email address*
<input type="text" id="email1" placeholder="Your Email Id"
/></label>
<p>Were you referred by a friend?</p>
<label
>Enter their email address (Optional)
<input type="text" id="email2" placeholder="Your Email Id"
/></label>
<p>Your Shop Consultant is SHOP.COM</p>
</div>
<div class="details">
<p class="detailhead">Shipping Address</p>
<label class="labelname"
>First Name*
<input type="text" name="" id="fname" placeholder="First name here"
/></label>
<label class="labellast"
>Last Name*<input
type="text"
name=""
id="lname"
placeholder="Last name here"
/></label>
<label class="labelname"
>Address 1*
<input
type="text"
name=""
id="add1"
placeholder="Please enter street address here"
/></label>
<label class="labellast"
>Address 2 <input type="text" name="" id="add2"
/></label>
<label class="labelname"
>City* <input type="text" name="" id="city" placeholder="City here"
/></label>
<label class="labellast"
>State*<input type="text" name="" id="state"
/></label>
<label class="labelname"
>Zip/Postal* <input type="number" id="zipcode" placeholder="zip code"
/></label>
<label class="phn"
>Phone*
<input
type="number"
id="mob"
placeholder="Please enter your 10 digit phone number"
/></label>
<hr />
<h3>Text Message (SMS) Alert:(Optional)</h3>
<label class="agree"
><input type="checkbox" class="checkbox" /> Do you want to # for
Shopper alerts from SHOP.COM? (Message and data rates may
apply.)</label
>
<label for="">Enter a mobile number</label>
<input
type="text"
name=""
id="mob2"
placeholder="Please enter your 10 digit phone number"
/>
<h3>Create an account (Optional)</h3>
<label class="agree"
>With a SHOP.COM account, you can enjoy the following benefits: up to
<span
>50%
<img
src="https://img.shop.com/Image/resources/images/cashback-icon.svg"
style="width: 17px; height: 17px"
alt=""
/>
Cashback</span
>
on eligible purchases, redeem discount coupons, order status and
history, saved payment options and addresses, exclusive emails and
more.</label
>
<div class="pass">
<label class="labelname"
>Password(At least 7 characters)
<input
type="password"
name=""
id="pass1"
placeholder="Please enter a minimum of 7 character"
/></label>
<label class="labellast"
>Confirm password
<input
type="password"
name=""
id="pass2"
placeholder="Please enter a minimum of 7 character"
/></label>
</div>
<div class="lastline">
<h3>Email deals: (Optional)</h3>
<label class="agree"
><input type="checkbox" name="" class="checkbox" />Do you want to
# for sweet email offers and discounts from SHOP.COM?</label
>
<label class="agree"
><input type="checkbox" name="" class="checkbox" />Do you want to
# for sweet email offers and discounts from MarketAmerica.com
and its brands?</label
>
<hr />
<button id="prcd">Continue Checkout</button>
<p>
By creating an account, you are agreeing to our
<a href="https://www.shop.com/info/terms-of-use"
>Terms of Service
</a>
and
<a href="https://www.shop.com/AboutPrivacyPolicy-t.xhtml"
>Privacy Policy.</a
>
</p>
</div>
</div>
</div>
<footer id="footer">
<section class="line1">
© 1997-2022 Market America, Inc. or its affiliates. All other designated
trademarks, copyrights, and brands are the property of their respective
owners. (famos-p19)
</section>
<section class="line2">
Privacy Policy | Terms of Use | Advertising Disclosure | Return Policy |
Shipping Information
</section>
<section class="digimg">
<div id="digicert">
<img src="digicert.png" alt="digicert" />
</div>
</section>
</footer>
</body>
</html>
<script src="checkout.js"></script>