-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmen.html
88 lines (84 loc) · 3.41 KB
/
men.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
<!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">
<title>Leather Line</title>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div id="header">
<div>
<img src="" id="counrtry-flag" alt="">
<select name="country" id="country">
<option value="usa">USA</option>
<option value="ind">IND</option>
</select>
</div>
<a href="./index.html"><img src="./src/images/image__2_-removebg-preview.png" alt="Error"></a>
<div id="login-info">
<div id="wishlist"><a href="./wishlist.html"><img src="./src/images/wishlist.png" alt=""></a></div>
<div id="cart"><a href="cart.html">cart</a></div>
<div id="profile"><a href="./loginPage.html">profile</a></div>
</div>
</div>
<div id="navbar">
<a href="./tabby.html">TABBY SHOP</a>
<a href="./men.html">MEN</a>
<a href="./women.html">WOMEN</a>
<a href="./bags.html">BAGS</a>
<a href="./wallets.html">WALLETS</a>
<a href="./offers.html">OFFERS</a>
</div>
<div id="search-bar">
<div>
<img src="./src/images/search icon.png" alt="Error">
</div>
<div>
<input type="text" id="search-input" placeholder="Enter Search Text">
<button id="search-btn">Search</button>
</div>
</div>
<div id="main">
<div id="filter">
<button class="dropdown-btn" onclick="toogledisplay()">Filter using Price</button>
<div class="dropdown-content" id="dropdown1">
<input type="number" placeholder="From" id="from">
<input type="number" placeholder="To" id="to">
<button id="reset">Reset</button>
<button id="submitprice">Filter</button>
</div>
</div>
<h1>MENS COLLECTIONS</h1>
<div id="container">
</div>
</div>
<div id="footer">
<h2>Contact us</h2>
<h3>support@leatherline.com</h3>
<a href="https://www.instagram.com/coach/"><img style="width: 30px;" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Instagram_logo_2016.svg/2048px-Instagram_logo_2016.svg.png" alt="Error"></a>
<a href="https://twitter.com/coach"><img style="width: 30px;" src="https://www.freepnglogos.com/uploads/twitter-logo-png/twitter-logo-vector-png-clipart-1.png" alt="Error"></a>
<a href="https://www.youtube.com/user/coach"><img style="width: 30px;" src="https://www.iconpacks.net/icons/2/free-youtube-logo-icon-2431-thumb.png" alt="Error "></a>
</div>
</body>
</html>
<script src="./scripts/men.js">
</script>
<script>
function toogledisplay()
{
document.querySelector("#dropdown1").classList.toggle("show")
}
window.onclick = (event)=>{
if(!(event.target.matches('.dropdown-btn') || event.target.matches("#submit") || event.target.matches("input")))
{
let drop = document.getElementsByClassName("dropdown-content");
for(let i = 0 ; i<drop.length ;i++)
{
if(drop[i].classList.contains('show'))
drop[i].classList.remove('show');
}
}
}
</script>