-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (117 loc) · 4.19 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
<!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="./css/all.min.css">
<link rel="stylesheet" href="./css/main.css">
<title>Comfy House</title>
</head>
<body>
<nav class="navbar">
<div class="navbar-center">
<span class="nav-icon">
<i class="fas fa-bars"></i>
</span>
<img src="./images/logo.svg" alt="store logo">
<div class="cart-btn">
<span class="nav-icon">
<i class="fas fa-cart-plus"></i>
</span>
<div class="cart-items">0</div>
</div>
</div>
</nav>
<!--Herobanner-->
<header class="hero">
<div class="banner">
<h1 class="banner-title">
Furniture Collections
</h1>
<button class="banner-btn">Shop Now</button>
</div>
</header>
<!--Products-->
<section class="products">
<div class="section-title">
<h2>Our Products</h2>
</div>
<div class="products-center">
<!-- <article class="product">
<div class="img-container">
<img src="./images/product-1.jpeg" alt="product">
<button class="bag-btn" data-id="1">
<i class="fas fa-shopping-cart"></i>
add to bag
</button>
</div>
<h3>Queen Bed</h3>
<h4>$56</h4>
</article> -->
<!-- <article class="product">
<div class="img-container">
<img src="./images/product-1.jpeg" alt="product">
<button class="bag-btn" data-id="1">
<i class="fas fa-shopping-cart"></i>
add to bag
</button>
</div>
<h3>Queen Bed</h3>
<h4>$56</h4>
</article>
<article class="product">
<div class="img-container">
<img src="./images/product-1.jpeg" alt="product">
<button class="bag-btn" data-id="1">
<i class="fas fa-shopping-cart"></i>
add to bag
</button>
</div>
<h3>Queen Bed</h3>
<h4>$56</h4>
</article>
<article class="product">
<div class="img-container">
<img src="./images/product-1.jpeg" alt="product">
<button class="bag-btn" data-id="1">
<i class="fas fa-shopping-cart"></i>
add to bag
</button>
</div>
<h3>Queen Bed</h3>
<h4>$56</h4>
</article> -->
</div>
</section>
<!--cart-->
<div class="cart-overlay">
<div class="cart">
<span class="cart-close">
<i class="fas fa-window-close"></i>
</span>
<h2>Your Cart</h2>
<div class="cart-content">
<div class="cart-item">
<img src="./images/product-1.jpeg" alt="cart-img">
<div>
<h4>Queen Bed</h4>
<h5>$16.00</h5>
<span class="remove-item">Remove</span>
</div>
<div>
<i class="fas fa-chevron-up"></i>
<p class="item-amount">5</p>
<i class="fas fa-chevron-down"></i>
</div>
</div>
</div>
<div class="cart-footer">
<h3>Cart Total:$ <span class="cart-total">0</span></h3>
<button class="cart-clear banner-btn">clear Cart</button>
</div>
</div>
</div>
<script src="./js/app.js"></script>
</body>
</html>