forked from Integrify-Finland/int-fs7-css-ecommerce-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
107 lines (107 loc) · 3.65 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
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" />
<link rel="stylesheet" href="cart.css">
<title>Document</title>
</head>
<body>
<div class="container">
<header>
<a href="index.html"><i class="fa-solid fa-house"></i></a>
<a href="#kids">kids</a>
<a href="#women">Women</a>
<a href="#">Men</a>
<!-- <input type="text" placeholder="Search.."> -->
<a href="signup.html">Signup</a>
<a href="cart.html"><i class="fa-solid fa-cart-shopping"></i>  Cart</a>
<a href="login.html"><i class="fa-solid fa-user"></i>  login</a>
</header>
<div class="cart-page">
<table>
<tr>
<th>product</th>
<th>quantity</th>
<th>subtotal</th>
</tr>
<tr>
<td>
<div class="cart-info">
<img src="images/men2.jpg" alt="kidsitem">
<div>
<p>Jens</p>
<small>price:500 DKK</small><br>
<a href="#">Remove</a>
</div>
</div>
</td>
<td><input type="number" value="1"></td>
<td>500 dkk</td>
</tr>
<tr>
<td>
<div class="cart-info">
<img src="images/women3.jpg" alt="kidsitem">
<div>
<p>T shirt</p>
<small>price:200 DKK</small><br>
<a href="#">Remove</a>
</div>
</div>
</td>
<td><input type="number" value="1"></td>
<td>200 dkk</td>
</tr>
<tr>
<td>
<div class="cart-info">
<img src="images/kid1.jpg" alt="kidsitem">
<div>
<p>Floeal T-shirt</p>
<small>price:350 DKK</small><br>
<a href="#">Remove</a>
</div>
</div>
</td>
<td><input type="number" value="1"></td>
<td>350 dkk</td>
</tr>
</table>
<div class="total-price">
<table>
<tr>
<td>Subtotal</td>
<td>1050 Dkk</td>
</tr>
<tr>
<td>Tax</td>
<td>30 Dkk</td>
</tr>
<tr>
<td>Ttotal</td>
<td>1080 Dkk</td>
</tr>
</table>
</div>
<div id="button">
<a href="#"><button>Proceed to checkout</button> </a>
</div>
</div>
<footer>
<div>
Copyright © My Online Store
</div>
<div>
<nav class="footer_media">
<a href="#" target="_blank"><i class="fa-brands fa-facebook footer_icon"></i></a>
<a href="#" target="_blank"><i class="fa-brands fa-youtube footer_icon"></i></a>
<a href="#" target="_blank"><i class="fa-brands fa-twitter footer_icon"></i></a>
</nav>
</div>
</footer>
</div>
</body>
</html>