-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshoppage.html
More file actions
69 lines (49 loc) · 1.93 KB
/
shoppage.html
File metadata and controls
69 lines (49 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop Page</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="/image/logo.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body class="">
<div class="container">
<header>
<div class="title">airpodgate.shop</div>
<div class="icon-cart">
<svg aria-hidden="true" xmlns="http://www.w3.org/2000" fill="none" viewBox="0 0 18 20">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 15a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 0h8m-8 0-1-4m9 4a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-9-4h10l2-7H3m2 7L3 4m0 0-.792-3H1"/>
</svg>
<span>0</span>
</div>
</header>
<div class="listProduct">
<!-- Product list will be populated here -->
</div>
</div>
<div class="cartTab">
<h1>Shopping Cart</h1>
<div class="listCart">
<!-- Cart items will be listed here -->
</div>
<div class="checkout-summary">
<span>Flat shipping rate - $10.00<br /> </span>
</div>
<div class="item-prices">
<span>Item Prices - $<span id="item-prices"></span>
</div>
<div class="test-five">
<span>Finale Price - $<span id="test-five">0.00</span>.00 <br /> </span>
</div>
<div class="btn">
<button class="close">Close</button>
<a href="checkout.html" class="checkOut">
<button type="button">Check Out</button>
</a>
</div>
</div>
<script src="app.js"></script>
</body>
</html>