-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdelivery.html
103 lines (94 loc) · 4.53 KB
/
delivery.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
<!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">
<link rel="stylesheet" href="MyStyle.css">
<title>delivery</title>
</head>
<body>
<div class="main">
<div id="header">
<img src="https://www.mytheresa.com/skin/frontend/mytheresa/default/images/logo.png?v=20220629T133918"
alt="" id="logo">
</div>
<div class="">
<div id="list">
<div>SHOPPING BAG</div>
<div>DELIVERY</div>
<div>PAYMENT</div>
<div>CONFIRM</div>
</div>
<div id="Box">
<div class="box" style="background-color: #a0a0a0;"></div>
<div class="box" style="background-color: black;"></div>
<div class="box"></div>
<div class="box"></div>
</div>
</div>
<div id="container">
<div id="left-container">
<h3>SHIPPING ADDRESS</h3>
<p>Please enter your shipping address in the form below.</p>
<form action="payment.html" id="form" onsubmit="details(event)">
<div id="radio">
<input type="radio" name="rad" id="" class="rad" value="Ms" checked> <label for="">Ms.*</label>
<input type="radio" name="rad" id="" class="rad" value="Mrs"> <label for="">Mrs.*</label>
<input type="radio" name="rad" id="" class="rad" value="Mr"> <label for="">Mr.*</label>
</div>
<input type="text" name="" id="fname" placeholder="firt name *" required value="" ;> <br>
<input type="text" name="" id="lname" placeholder="last name *" required> <br>
<input type="text" name="" id="company" placeholder="company"> <br>
<input type="text" name="" id="street" placeholder="street *" required> <br>
<input type="text" name="" id="address_line" placeholder="Address line 2"> <br>
<input type="number" name="" id="pascode" placeholder="passcode *" required> <br>
<input type="text" name="" id="city" placeholder="city *" required> <br>
<select name="" id="country">
<option value="india">India</option>
<option value="germany">Germany</option>
<option value="south africa"> South Africa</option>
<option value="canada"> Canada</option>
</select><br>
<input type="number" name="" id="mobile" placeholder="mobile phone *" required>
<p>* required field.</p>
</form>
</div>
<div id="right-container">
<h3>SHIPPING ADDRESS</h3>
<p>Due to a high volume of orders, delays of up to 4 days may occur. We apologize for any inconvenience
this may cause.</p>
<div id="shipping-method">
<div id="express">
<input type="radio" name="" id="exp" value="express" checked> <label class="font" for="">Express</label>
</div>
<p>€ 0.00</p>
</div>
<h3>PACKAGING OPTIONS</h3>
<div id="packaging-opt">
<div>
<input type="radio" name="pack" id="" checked> <label class="font" for="">Mytheresa Packahing</label>
<p>FREE</p>
<img src="https://www.mytheresa.com/skin/frontend/mytheresa/default/images/package/package_mytheresa_2x.jpg"
alt="">
</div>
<div>
<input type="radio" name="pack" id="pack"> <label class="font" for="">Eco Packahing</label>
<p>FREE</p>
<img src="https://www.mytheresa.com/skin/frontend/mytheresa/default/images/package/package_brown_2x.jpg"
alt="">
</div>
</div>
</div>
</div>
</div>
<div id="btn">
<div id="back-to">
<a href="">BACK TO SHOPPING BAG</a>
</div>
<button type="submit" id="proceed-to" form="form" >PROCEED TO CHECKOUT</button>
</div>
</div>
</body>
<script src="delivery.js"></script>
</html>