forked from JS-Knights/Carto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCart.html
62 lines (59 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta type="keywords" content="shopping wesite, carto, html , css" />
<title>Title</title>
<link rel="stylesheet" href="Cart.css">
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah|Lato" rel="stylesheet">
<script src="Cart.js"></script>
<script src="src/jquery-3.2.1.js"></script>
</head>
<body>
<div class="container">
<header>
<div class="Logo--col">
<div class="Logo--box">
<i>LOGO</i>
</div>
</div>
<div class="heading">
<b>Shopping Cart</b>
</div>
<a href="./index.html"><div class="header--icon--box">
<img src="img/back-button.svg" class="header--icon">
</div></a>
<div class="header--icon--box" style="margin-right: 1.5rem">
<img src="img/magnifying-glass.svg" class="header--icon">
</div>
</header>
<div class="Detail" id="Detail">
<div class="Detail--heading">
<div class="Detail--heading--col1">
Added Item
</div>
<div class="Detail--heading--col2">
Price
</div>
<div class="Detail--heading--col3">
Quantity
</div>
</div>
<div id="Detail--c">
</div>
</div>
<div class="checkout--row">
<div class="checkout--row--col1">
<a href="index.html" class="button--1">
Continue Shopping
</a>
</div>
<div class="checkout--row--col2">
<a href="Payment.html" class="button--2">
Proceed to Checkout
</a>
</div>
</div>
</div>
</body>
</html>