-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart-2.html
More file actions
120 lines (120 loc) · 6.44 KB
/
cart-2.html
File metadata and controls
120 lines (120 loc) · 6.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cart2</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/all.css" />
</head>
<body>
<div class="bg-white sticky-top">
<div class="container">
<nav class="navbar px-0 navbar-expand-lg navbar-light bg-white">
<a class="navbar-brand position-absolute" href="./index.html"
style="left: 50%; transform: translate(-50%, -50%); top: 50%;">
Navbar
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse bg-white custom-header-md-open" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link ps-0" href="./product.html">Lorem ipsum</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./detail.html">Lorem ipsum</a>
</li>
</ul>
</div>
<div class="d-flex">
<a href="#"><i class="bi bi-heart-fill me-5"></i></a>
<a href="./cart-2.html"><i class="bi bi-cart"></i></a>
</div>
</nav>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 bg-white py-5" style="min-height: calc(100vh - 56px - 76px);">
<div class="d-flex justify-content-between">
<h2 class="mt-2">Cart Detail</h2>
</div>
<div class="d-flex mt-4 bg-light">
<img src="https://images.unsplash.com/photo-1502743780242-f10d2ce370f3?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1916&q=80" alt="" style="width: 120px; height: 120px; object-fit: cover;">
<div class="w-100 p-3 position-relative">
<a href="#" class="position-absolute" style="top: 16px; right: 16px;"><i class="bi bi-x"></i></a>
<p class="mb-0 fw-bold">Lorem ipsum</p>
<p class="mb-1 text-muted" style="font-size: 14px;">Lorem ipsum dolor sit amet</p>
<div class="d-flex justify-content-between align-items-center w-100">
<div class="input-group w-50 align-items-center">
<div class="input-group-prepend pe-1">
<a href="#"> <i class="bi bi-dash"></i></a>
</div>
<input type="text" class="form-control border-0 text-center my-auto shadow-none bg-light px-0" placeholder="" aria-label="Example text with button addon" aria-describedby="button-addon1" value="1">
<div class="input-group-append ps-1">
<a href="#"><i class="bi bi-plus"></i></a>
</div>
</div>
<p class="mb-0 ms-auto">NT$12,000</p>
</div>
</div>
</div>
<div class="d-flex mt-4 bg-light">
<img src="https://images.unsplash.com/photo-1502743780242-f10d2ce370f3?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1916&q=80" alt="" style="width: 120px; height: 120px; object-fit: cover;">
<div class="w-100 p-3 position-relative">
<a href="#" class="position-absolute" style="top: 16px; right: 16px;"><i class="bi bi-x"></i></a>
<p class="mb-0 fw-bold">Lorem ipsum</p>
<p class="mb-1 text-muted" style="font-size: 14px;">Lorem ipsum dolor sit amet</p>
<div class="d-flex justify-content-between align-items-center w-100">
<div class="input-group w-50 align-items-center">
<div class="input-group-prepend pe-1">
<a href="#"> <i class="bi bi-dash"></i></a>
</div>
<input type="text" class="form-control border-0 text-center my-auto shadow-none bg-light px-0" placeholder="" aria-label="Example text with button addon" aria-describedby="button-addon1" value="1">
<div class="input-group-append ps-1">
<a href="#"><i class="bi bi-plus"></i></a>
</div>
</div>
<p class="mb-0 ms-auto">NT$12,000</p>
</div>
</div>
</div>
<table class="table mt-4 text-muted">
<tbody>
<tr>
<th scope="row" class="border-0 px-0 font-weight-normal">Lorem ipsum</th>
<td class="text-end border-0 px-0">NT$24,000</td>
</tr>
<tr>
<th scope="row" class="border-0 px-0 pt-0 font-weight-normal">Lorem ipsum</th>
<td class="text-end border-0 px-0 pt-0">NT$500</td>
</tr>
</tbody>
</table>
<div class="d-flex justify-content-between mt-4">
<p class="mb-0 h4 fw-bold">Lorem ipsum</p>
<p class="mb-0 h4 fw-bold">NT$24,500</p>
</div>
<a href="./checkout.html" class="btn btn-dark btn-block mt-4 rounded-0 py-3">Lorem ipsum</a>
</div>
</div>
</div>
<div class="bg-dark">
<div class="container">
<div class="d-flex align-items-center justify-content-between text-white py-4">
<p class="mb-0">© 2020 LOGO All Rights Reserved.</p>
<ul class="d-flex list-unstyled mb-0 h4">
<li><a href="#" class="text-white mx-3"><i class="bi bi-facebook"></i></a></li>
<li><a href="#" class="text-white mx-3"><i class="bi bi-instagram"></i></a></li>
<li><a href="#" class="text-white ms-3"><i class="bi bi-line"></i></a></li>
</ul>
</div>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js" integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous"></script>
</html>