-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (120 loc) · 5.38 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
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<!-- Gallary -->
<section class="gallary">
<!-- filters section -->
<div class="icon"><i class="fa-solid fa-bars"></i></div>
<div class="filter-container">
<!-- search box -->
<form class="input-form">
<input type="search" id="search-input" placeholder="Search.....">
</form>
<!-- Categaries section -->
<h5>Company</h5>
<article class="companies">
<button class="company-btn">All</button>
<button class="company-btn">Ikea</button>
<button class="company-btn">Marcos</button>
<button class="company-btn">Caressa</button>
<button class="company-btn">Liddy</button>
</article>
</div>
<div class="products-container" id="productbox">
<article class="product" id="produc1">
<img src="Imges/product-1.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">High-back Bench</h5>
<span class="product-price">9.99</span>
</div>
</article>
<article class="product">
<img src="Imges/product-2.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">High-back Bench</h5>
<span class="product-price">9.99</span>
</div>
</article>
<article class="product">
<img src="Imges/product-3.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">High-back Bench</h5>
<span class="product-price">9.99</span>
</div>
</article>
<article class="product">
<img src="Imges/product-4.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">High-back Bench</h5>
<span class="product-price">9.99</span>
</div>
</article>
<article class="product">
<img src="Imges/product-5.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">High-back Bench</h5>
<span class="product-price">9.99</span>
</div>
</article>
<article class="product">
<img src="Imges/product-6.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">High-back Bench</h5>
<span class="product-price">9.99</span>
</div>
</article>
<article class="product">
<img src="Imges/product-7.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">High-back Bench</h5>
<span class="product-price">9.99</span>
</div>
</article>
<article class="product">
<img src="Imges/product-8.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">Emperor Bed</h5>
<span class="product-price">21.99</span>
</div>
</article>
<article class="product">
<img src="Imges/product-9.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">Utopia Sofa</h5>
<span class="product-price">39.95</span>
</div>
</article>
<article class="product">
<img src="Imges/product-10.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">Entertainment Center</h5>
<span class="product-price">29.98</span>
</div>
</article>
<article class="product">
<img src="Imges/product-11.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">Albany Sectional</h5>
<span class="product-price">10.99</span>
</div>
</article>
<article class="product">
<img src="Imges/product-12.jpeg" alt="Product-img">
<div class="product-footer">
<h5 class="product-name">Leather Sofa</h5>
<span class="product-price">9.99</span>
</div>
</article>
</div>
</section>
<script src="app.js"></script>
</body>
</html>