-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
91 lines (84 loc) · 2.67 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
<!DOCTYPE html>
<html lang="pt-br">
<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="icon" href="/img/icon.png" type="image/png" />
<link rel="shortcut icon" href="/img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" rel="stylesheet">
<title>Spiced Mint Candle</title>
</head>
<body>
<header>
<div class="topbar container">
<h1><a href="/"><img src="img/logo.png" alt="Brand Logo"></a></h1>
<nav>
<div class="menu-hamburger">
<span></span>
<span></span>
<span></span>
</div>
<ul>
<li><a href="#learn">Discovery</a></li>
<li><a href="">About</a></li>
<li><a href="#footer">Contact us</a></li>
</ul>
</nav>
<div>
<span class="material-icons-outlined">person_outline</span>
<span class="material-icons-outlined">shopping_cart</span>
</div>
</div>
</header>
<main class="cart">
<section class="top">
<h2>Your cart items</h2>
<a href="/product_1.html">Back to shopping</a>
</section>
<article class="cart-display container">
<section class="row-1">
<h2>Product</h2>
<h3>Price</h3>
<h3>Quantity</h3>
<h3>Total</h3>
</section>
<section class="row-2">
<figure>
<img src="img/img-details-product1.png" alt="product image">
<section>
<h2>Spiced Mint Candleaf®</h2>
<span>Remove</span>
</section>
</figure>
<p>$ 9.99</p>
<div>
<p class="mobile-only">Quantity</p>
<div class="counter">
<p>-</p>
<p>1</p>
<p>+</p>
</div>
<p class="alert-negative">Attention:<br>Quantity can't be negative!</p>
<p class="alert-out">No more items can be added.</p>
</div>
<p>$ 9.99</p>
</section>
<section class="row-3">
<section>
<div>
<p>Sub-total</p>
<p>$ 9.99</p>
</div>
<p>Tax and shipping cost will be calculated later</p>
</section>
<a href="/p-details.html" class="btn">Check-out</a>
</section>
</article>
</main>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="js/script.js"></script>
</body>
</html>