-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (56 loc) · 1.76 KB
/
index.html
File metadata and controls
62 lines (56 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fashion Hub - Shop All Products</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<div class="left">
<strong><h2 style="font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;" >Fashion Hub</h2></strong>
<a href="#">New Arrivals</a>
<a href="#">Men</a>
<a href="#">Women</a>
<a href="#">Accessories</a>
<a href="#">Sale</a>
</div>
<div class="right">
<input type="text" id="search" placeholder="Search" />
<span>♥</span>
<span><a href="https://www.linkedin.com/in/himanshu-kumar-389a85273/"><img src="img/linkedin.svg" alt="linkedin"></a></span>
</div>
</nav>
<h1>Shop All Products</h1>
<div class="filters">
<select id="filter-category">
<option value="all">Category</option>
<option value="Men">Men</option>
<option value="Women">Women</option>
<option value="Accessories">Accessories</option>
</select>
<select id="sort-price">
<option value="none">Price</option>
<option value="asc">Low to High</option>
<option value="desc">High to Low</option>
</select>
<select id="sort-rating">
<option value="none">Rating</option>
<option value="high">Highest</option>
<option value="low">Lowest</option>
</select>
</div>
<div class="product-grid" id="product-grid"></div>
<div class="pagination">
<button><</button>
<button class="active">1</button>
<button>2</button>
<button>3</button>
<button>4</button>
<button>5</button>
<button>></button>
</div>
<script src="script.js"></script>
</body>
</html>