-
Notifications
You must be signed in to change notification settings - Fork 1
/
checkout.html
108 lines (100 loc) · 3.21 KB
/
checkout.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
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#59bd3c94">
<title>E-Store</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/checkout.css">
</head>
<body>
<!--TOP NAVBAR -->
<nav class="navbar">
<div class="nav-start">
<div class="nav-item">
<div class="nav-link nav-brand">
<span class="first">E-</span><span class="second">SOKO</span>
</div>
</div>
</div>
<div class="nav-center">
<div class="nav-item main-search">
<input type="text" placeholder="I am looking for .." class="search">
<span class="fa fa-search search-icon"></span>
</div>
</div>
<div class="nav-end">
<div class="nav-item">
<div class="nav-link cart-menu">
<i class="fa fa-cart icon"></i> Cart <span class="cart-counter">10</span>
</div>
</div>
<div class="nav-item">
<div class="nav-link">
<i class="fa fa-user-o"></i> Sign In
</div>
</div>
</div>
</nav>
<!--CONTENT WRAPPER-->
<div class="wrapper">
<h3 class="text-center title">Your Cart</h3>
<div class="cart">
<div class="product-list">
<div class="list-titles">
<div class="product">Product</div>
<div class="price">Price</div>
<div class="qty">Quantity</div>
<div class="total">Total</div>
</div>
<div class="product-item">
<div class="product">
<div class="featured-image">
<img src="https://i.picsum.photos/id/1024/500/500.jpg" alt="My cool product">
</div>
<div class="name">KImondo plus polus wihth dd crfr</div>
</div>
<div class="price">Ksh 200</div>
<div class="qty">3</div>
<div class="total">Ksh 600</div>
</div>
<div class="product-item">
<div class="product">
<div class="featured-image">
<img src="https://i.picsum.photos/id/1024/500/500.jpg" alt="My cool product">
</div>
<div class="name">KImondo plus polus wihth dd crfr</div>
</div>
<div class="price">Ksh 200</div>
<div class="qty">3</div>
<div class="total">Ksh 600</div>
</div>
<div class="product-item">
<div class="product">
<div class="featured-image">
<img src="https://i.picsum.photos/id/1024/500/500.jpg" alt="My cool product">
</div>
<div class="name">KImondo plus polus wihth dd crfr</div>
</div>
<div class="price">Ksh 200</div>
<div class="qty">3</div>
<div class="total">Ksh 600</div>
</div>
</div>
<div class="total-calculation">
<div>
<span class="subtitle">Subtotal</span>
<span>KSh 28930.00</span>
</div>
</div>
<div class="action-buttons">
<button class="button back">continue shopping</button>
<button class="button checkout">checkout</button>
</div>
</div>
</div>
<script src="assets/js/app-bundle.js"></script>
</body>
</html>