-
Notifications
You must be signed in to change notification settings - Fork 2
/
deliverycart.html
79 lines (71 loc) · 2.32 KB
/
deliverycart.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
<!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>Document</title>
<link rel="stylesheet" href="./deliverycart.css" />
</head>
<body>
<nav>
<div>asos</div>
<div>Checkout</div>
<div>
<img
id="logo"
src="https://www.digicert.com/content/dam/digicert/images/navigation/header/smart-seal-nav-promo.png"
alt=""
/>
</div>
</nav>
<div class="con1">
<div class="box">
<h1>DELIVERY ADDRESS</h1>
<label for="">First Name</label>
<input type="text" name="" id="First" />
<label for="">Last Name</label>
<input type="text" name="" id="Last" />
<label for="">Mobile</label>
<input type="number" name="" id="Mobile" />
<label for="">Address</label>
<input type="text" name="" id="Address" />
<label for="">City</label>
<input type="text" name="" id="City" />
<label for="">Country</label>
<input type="text" name="" id="Country" />
<label for="">Postcode</label>
<input type="number" name="" id="Postcode" />
<br />
<button onclick="fun1()" id="btn1">DELIVER TO THIS ADDRESS</button>
</div>
<hr />
<!-- <div class="con1"> -->
<div class="box">
<button id="btn2" onclick="fun2()">ADD CREDIT/DEBIT CARD</button>
<label id="lbl" for="">OR</label>
<button id="btn3">PAYPAL</button>
<br />
<div id="box1">
<h2 for="">WE ACCEPT :</h2>
<img
id="img1"
src="https://assets.asosservices.com/asos-finance/images/marketing/single.png"
alt=""
/>
</div>
</div>
</div>
<div class="container2">
<button onclick="fun2()" id="btn4">PLACE ORDER</button>
<p>
By placing your order you agree to our <u>Terms & Conditions</u>,
<u>privacy</u> and <u>returns policies</u>. You also consent to some of
your data being stored by ASOS, which may be used to make future
shopping experiences better for you.
</p>
</div>
<!-- </div> -->
</body>
</html>
<script src="./deliverycart.js"></script>