-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.html
More file actions
154 lines (151 loc) · 3.86 KB
/
products.html
File metadata and controls
154 lines (151 loc) · 3.86 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products | Comfy</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<script defer type="module" src="./src/pages/products.js"></script>
</head>
<body>
<nav class="navbar page">
<div class="nav-center">
<div>
<button class="toggle-nav">
<i class="fas fa-bars"></i>
</button>
<!-- Nav links -->
<ul class="nav-links">
<li>
<a class="nav-link" href="index.html">Home</a>
</li>
<li>
<a class="nav-link" href="products.html">Products</a>
</li>
<li>
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
<!-- Nav logo -->
<img class="nav-logo" src="./images/logo-black.svg" alt="logo">
<!-- Cart icon -->
<div class="toggle-container">
<button class="toggle-cart">
<i class="fas fa-shopping-cart"></i>
</button>
<span class="cart-item-count">1</span>
</div>
</div>
</nav>
<!-- Hero section -->
<section class="page-hero">
<div class="section-center">
<h3 class="page-hero-title">Home / Products</h3>
</div>
</section>
<!-- Sidebar -->
<div class="sidebar-overlay">
<aside class="sidebar">
<!-- Close button -->
<button class="sidebar-close">
<i class="fas fa-times"></i>
</button>
<!-- Links -->
<ul class="sidebar-links">
<li>
<a class="sidebar-link" href="index.html">
<i class="fas fa-home fa-fw"></i>
Home
</a>
</li>
<li>
<a class="sidebar-link" href="products.html">
<i class="fas fa-couch fa-fw"></i>
Products
</a>
</li>
<li>
<a class="sidebar-link" href="about.html">
<i class="fas fa-book fa-fw"></i>
About
</a>
</li>
</ul>
</aside>
</div>
<!-- Cart -->
<div class="cart-overlay">
<aside class="cart">
<button class="cart-close">
<i class="fas fa-times"></i>
</button>
<header>
<h3 class="text-slanted">Your bag</h3>
</header>
<!-- Cart items -->
<div class="cart-items">
<!-- Single item -->
<!-- <article class="cart-item" data-id="">
<img class="cart-item-img" src="./images/main-bcg.jpeg" alt="cart item"> -->
<!-- Item info -->
<!-- <div>
<h4 class="cart-item-name">high-back bench</h4>
<p class="cart-item-price">113.99</p>
<button class="cart-item-remove-btn">Remove</button>
</div> -->
<!-- Amount toggle -->
<!-- <div>
<button class="cart-item-increase-btn">
<i class="fas fa-chevron-up"></i>
</button>
<p class="cart-item-amount">1</p>
<button class="cart-item-decrease-btn">
<i class="fas fa-chevron-down"></i>
</button>
</div>
</article> -->
<!-- End of single item -->
</div>
<!-- Footer -->
<footer>
<h3 class="cart-total text-slanted">
total: $12.99
</h3>
<button class="cart-checkout btn">Checkout</button>
</footer>
</aside>
</div>
<!-- Products -->
<section class="products">
<!-- Filters -->
<div class="filters">
<div class="filters-container">
<!-- Search -->
<form class="input-form">
<input class="search-input" type="text" placeholder="Search...">
</form>
<!-- Categories -->
<h4>Company</h4>
<article class="companies">
<button class="company-btn">All</button>
<button class="company-btn">Ikea</button>
</article>
<!-- Price -->
<h4>Price</h4>
<form class="price-form">
<input class="price-filter" type="range" min="0" value="50" max="100">
</form>
<p class="price-value"></p>
</div>
</div>
<!-- Products -->
<div class="products-container"></div>
</section>
<!-- Page loading -->
<div class="page-loading">
<h2>Loading...</h2>
</div>
</body>
</html>