-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshippingAddress.html
executable file
·75 lines (70 loc) · 2.61 KB
/
shippingAddress.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
<!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>Shipping Information</title>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./shippingAddress.css" />
</head>
<body>
<div class="image-logo">
<a href="./index.html"><img src="./assets/homelogo.svg" alt="logo" /></a>
</div>
<div class="shipping-address">
<div class="flex shipping-layout">
<a href="cart.html">Cart</a>
<img width="2%" src="./assets/lessthenimage.svg" alt="" />
<p class="information">Information</p>
<img width="2%" src="./assets/lessthenimage.svg" alt="" />
<p>Shipping</p>
<img width="2%" src="./assets/lessthenimage.svg" alt="" />
<p>Payment</p>
</div>
<div class="express">
<p>Express checkout</p>
</div>
<div class="payment-button flex">
<button>shop pay</butto>
<button>amazon pay</button>
<button>G Pay</button>
</div>
<hr>
<div class="address flex">
<form>
<label>Contact Information</label><br>
<input type="text" placeholder="Email or mobile number" id="mobile">
<br>
<label>Shipping Address</label><br>
<input type="text" placeholder="First name (Optional)" id="firstName">
<input type="text" placeholder="Last name" id="lastName">
<input type="text" placeholder="Address" id="address"><br>
<input type="text" placeholder="Apartment, suite, etc (Optional)" id="apartment">
<br>
<input type="text" placeholder="City" id="city"><br>
<select id="select">
<option value="india">India</option>
</select>
<select id="states">
<option value="---">----</option>
<option value="up">U.P</option>
<option value="delhi">Delhi</option>
<option value="haryana">Haryana</option>
</select>
<input type="text" placeholder="ZIP Code" id="zipCode">
<br>
<input type="text" placeholder="Phone number" id="phoneNumber">
<br>
<input type="submit" value="Continue to sipping" id="submit">
<a class="return" href="./cart.html">Return to cart</a>
</form>
</div>
</div>
<div><a href="https://preview.pixlr.com/images/800wm/100/1/1001451791.jpg">
<button>CONTINUE TO DELIVERY</button>
</a>
</div>
</body>
<script src="./shippingAddress.js"></script>
</html>