-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
127 lines (112 loc) · 3.48 KB
/
index.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Comfy House / Shopping Cart</title>
<!-- style / css -->
<!-- <link rel="stylesheet" href="./assets/css/main.css"> -->
<link rel="stylesheet" href="./assets/css/style.css" />
<!-- favicon -->
<link
rel="shortcut icon"
href="./assets/img/favicon.png"
type="image/png"
/>
<!-- font awesome -->
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
</head>
<body>
<!-- start of navbar -->
<nav class="navbar">
<div class="navbar-center">
<span class="nav-icon">
<i class="fa fa-bars" aria-hidden="true"></i>
</span>
<!-- app logo -->
<img src="./assets/img/logo.svg" alt="store logo" />
<div class="cart-btn">
<span class="nav-icon">
<i class="fa fa-cart-plus" aria-hidden="true"></i>
</span>
<div class="cart-items">0</div>
</div>
</div>
</nav>
<!-- end of navbar -->
<!-- start of hero -->
<header class="hero">
<div class="banner">
<h1 class="banner-title">furniture collection</h1>
<button class="banner-btn">shop now</button>
</div>
</header>
<!-- end of hero -->
<!-- start of products -->
<section class="products">
<div class="section-title">
<h2>our products</h2>
</div>
<div class="products-center">
<!-- single product start -->
<!-- <article class="product">
<div class="img-container">
<img
src="./assets/img/product-1.jpeg"
alt="product"
class="product-img"
/>
<button class="bag-btn" data-id="1">
<i class="fa fa-shopping-cart" aria-hidden="true"></i>
add to bag
</button>
</div>
<h3>queen bag</h3>
<h4>Price: $16</h4>
</article> -->
<!-- single product end -->
</div>
</section>
<!-- end of products -->
<!-- start of cart -->
<div class="cart-overlay">
<div class="cart">
<span class="close-cart">
<i class="fa fa-window-close" aria-hidden="true"></i>
</span>
<h2>your cart</h2>
<div class="cart-content">
<!-- cart item start -->
<!-- <div class="cart-item">
<img src="./assets/img/product-1.jpeg" alt="product" />
<div>
<h4>queen bed</h4>
<h5>$9.00</h5>
<span class="remove-item">remove</span>
</div>
<div>
<i class="fa fa-chevron-up" aria-hidden="true"></i>
<p class="item-amount">1</p>
<i class="fa fa-chevron-down" aria-hidden="true"></i>
</div>
</div> -->
<!-- cart item end -->
</div>
<!-- cart footer -->
<div class="cart-footer">
<h3>your total : $ <span class="cart-total">0</span></h3>
<!-- clear all cart item button -->
<button class="clear-cart banner-btn">clear cart</button>
</div>
</div>
</div>
<!-- end of cart -->
<!-- javascript -->
<script src="./assets/js/app.js"></script>
</body>
</html>