-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
128 lines (107 loc) · 3.43 KB
/
cart.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
<!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>Your Shooping Bag | Mytheresa</title>
<link rel="stylesheet" href="cart.css">
</head>
<body>
<header class="parent">
<nav class="flex spaceb">
<div class="leftp flex itemsc">
<ul class="flex itemsc justifyc uppr bold">
<li>women</li>
<li>men</li>
<li>kids</li>
<li>Life</li>
</ul>
</div>
<div class="rigthp flex itemsc">
<div class="bag margin">My Account</div>
<div class="wishlist margin"> My wishlist</div>
<div class="bag margin">Internatoinal | English</div>
</div>
</nav>
</header>
<div>
<h1 CLASS="heading">
MYTHERESA
</h1>
</div>
<header class="parent">
<nav class="flex spaceb">
<div class="leftp flex itemsc">
<ul class="flex itemsc justifyc uppr bold">
<li>New arrivals</li>
<li>designers</li>
<li>clothing</li>
<li>shoes</li>
<li>bags</li>
<li>accessories</li>
<li>new season</li>
<li>vacation shop</li>
<li>sale</li>
</ul>
</div>
<div class="rigthp flex itemsc">
<input id="fsearch" type="text" placeholder="Search for...">
</div>
</nav>
</header>
<hr>
<p id="free">Free <span id="words">Returns within 30 days</span></p>
<h2 class="shop">Your Shopping Bag</h2>
<div class="pr">
<button id="pb">PROCEED TO CHECKOUT</button>
</div>
<div class="rd">
<h3>Price</h3>
<h3>Quantity</h3>
<h3>Subtotal</h3>
</div>
<hr class="line1">
<div id="container" class="parent2">
</div>
<hr class="line1">
<div class="parent2 total">
<div>
<h4>Use code REWARD10 for 10% off selected items when your first order is over €600</h4>
<input type="text" placeholder="Gift card/store credit/promo code" id="input1">
<input type="text" placeholder="Use Code" id="input2">
</div>
<div>
<h2>Subtotal:- <span id="total-price">0</span></h2>
<h4>VAT exception. VAT not included. Shipping not included.</h4>
</div>
</div>
<div class="parent2 total total1">
<div>
<button class="b1" id="cs">CONTINUE SHOPPING</button>
</div>
<div>
<button class="b2" id="pb1">PROCEED TO CHECKOUT</button>
</div>
</div>
<hr class="line1">
<h3 id="h3">You can also place your order via telephone</h3>
<div class="parent2 total">
<button class="bot1">CALL US<br>
+49 89 127695-101<br>
Argentina: 0800-666-0663<br>
Chile: 800-914-515<br>
Colombia: 01800-518-5268<br>
Mexico: 01-800-099-0703<br>
Peru: 0800-78259<br>
Puerto Rico: 1-787-303-4205<br>
Available 24/7</button>
<button class="bot2">MAIL US<br>
customercare@mytheresa.com<br>
Please note that due to a high amount of requests, we might take a few days to get back to you. We apologize for any inconvenience this may cause.</button>
</div>
</div>
<hr class="line1">
</body>
<script src="./cart.js"></script>
</html>