-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (96 loc) · 4.85 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping Cart</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script href="https://stackpath.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.bundle.min.js"></script>
<script href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="assets/js/script.js"></script>
</head>
<body>
<div class="container bg-white rounded-top mt-5" id="zero-pad">
<div class="row d-flex justify-content-center">
<div class="col-lg-10 col-12 pt-3">
<div class="d-flex">
<div class="pt-1">
<h4>My T-shirt</h4>
</div>
<div class="ml-auto p-2"><a href="#" class="text-dark text-decoration-none" id="mobile-font">LOGIN</a></div>
<div class="p-2"><a href="#" class="text-dark text-decoration-none a" id="mobile-font">HELP</a></div>
</div>
<div class="d-flex flex-column pt-4">
<div>
<h5 class="text-uppercase font-weight-normal">shopping bag</h5>
</div>
<div class="font-weight-normal">2 items</div>
</div>
<div class="d-flex flex-row px-lg-5 mx-lg-5 mobile" id="heading">
<div class="px-lg-5 mr-lg-5" id="produc">PRODUCTS</div>
<div class="px-lg-5 ml-lg-5" id="prc">PRICE</div>
<div class="px-lg-5 ml-lg-1" id="quantity">QUANTITY</div>
<div class="px-lg-5 ml-lg-3" id="total">TOTAL</div>
</div>
<div id="product-0" class="d-flex flex-row justify-content-between align-items-center pt-lg-4 pt-2 pb-3 border-bottom mobile">
<div class="d-flex flex-row align-items-center">
<div><img src="https://images.unsplash.com/photo-1529374255404-311a2a4f1fd9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" width="150" height="150" alt="" id="image"></div>
<div class="d-flex flex-column pl-md-3 pl-1">
<div>
<h6>COTTON T-SHIRT</h6>
</div>
<div>Art.No:<span class="pl-2">091091001</span></div>
<div>Color:<span class="pl-3">White</span></div>
<div>Size:<span class="pl-4"> M</span></div>
</div>
</div>
<div class="pl-md-0 pl-1"><b>R$50,00</b></div>
<div class="pl-md-0 pl-2">
<span class="fa fa-minus-square text-secondary" onclick="removeItem(0)"></span><span class="px-md-3 px-1" id="amount0">0</span><span class="fa fa-plus-square text-secondary" onclick="addItem(0)"></span>
</div>
<div class="pl-md-0 pl-1"><b>R$</b><span id="total0"></span></div>
<div class="close">×</div>
</div>
<div id="product-2" class="d-flex flex-row justify-content-between align-items-center pt-4 pb-3 mobile">
<div class="d-flex flex-row align-items-center">
<div><img src="https://images.unsplash.com/photo-1529374255404-311a2a4f1fd9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" width="150" height="150" alt="" id="image"></div>
<div class="d-flex flex-column pl-md-3 pl-1">
<div>
<h6>WHITE T-SHIRT</h6>
</div>
<div>Art.No:<span class="pl-2">056289891</span></div>
<div>Color:<span class="pl-3">White</span></div>
<div>Size:<span class="pl-4"> XL</span></div>
</div>
</div>
<div class="pl-md-0 pl-1"><b>R$ 30,00</b></div>
<div class="pl-md-0 pl-2">
<span class="fa fa-minus-square text-secondary" onclick="removeItem(1)"></span><span class="px-md-3 px-1" id="amount1">0</span><span class="fa fa-plus-square text-secondary" onclick="addItem(1)"></span>
</div>
<div class="pl-md-0 pl-1"><b>R$</b><span id="total1"></span></div>
<div class="close">×</div>
</div>
</div>
</div>
</div>
<div class="container bg-light rounded-bottom py-4" id="zero-pad">
<div class="row d-flex justify-content-center">
<div class="col-lg-10 col-12">
<div class="d-flex justify-content-between align-items-center">
<div>
<button class="btn btn-sm bg-light border border-dark">GO BACK</button>
</div>
<div class="px-md-0 px-1" id="footer-font">
<b class="pl-md-4">SUBTOTAL R$<span class="pl-md-4" id="totalPurchaseAmount"></span></b>
</div>
<div>
<button class="btn btn-sm bg-dark text-white px-lg-5 px-3">CONTINUE</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>