-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
94 lines (87 loc) · 3.01 KB
/
product.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
<!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>Document</title>
<link rel="icon" href="//n.nordstrommedia.com/id/169f9507-47b3-44bc-9ad4-9244fe191523.png" sizes="16x16" /><link rel="icon" href="//n.nordstrommedia.com/id/69be546b-0c64-4cd0-8840-67a112d242d7.png" sizes="32x32" /><link rel="icon" href="//n.nordstrommedia.com/id/c4fb2a09-3657-4161-9b79-6412897d9399.png" sizes="96x96" />
<link rel="stylesheet" href="./css/product_styles.css">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/main.js"></script>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<div id="header"></div>
<p class="breadcrumb"><span><a href="./">Home</a></span> / Men / Clothing</p>
<div class="flex">
<div class="leftbox">
<p>Gender</p>
<hr>
<input type="checkbox" name="" id="">
<label id="men" for="">Men's</label><br>
<input type="checkbox" name="" id="">
<label id="women" for="">Women's</label>
<hr>
<p>Size</p>
<hr>
<p>Color</p>
<div class="scroll">
<input type="checkbox" name="" id="">
<label for="">Blue</label><br>
<input type="checkbox" name="" id="">
<label for="">Red</label><br>
<input type="checkbox" name="" id="">
<label for="">Grey</label><br>
</div>
<hr>
<p>Brand</p>
<hr>
<p>Material</p>
<hr>
<p>Price</p>
<input type="checkbox" name="" id="">
<label for="">500-10000</label><br>
<input type="checkbox" name="" id="">
<label for="">10001-50000</label><br>
<hr>
<p>Sale</p>
<hr>
<p>Style</p>
<hr>
</div>
<div id="text">
<h3>Fall Staples</h3>
<div id ="name">
<p>Shirts</p>
<p>Loungewear</p>
<p>Sweaters</p>
<p>Jeans</p>
<p>Jackets</p>
<p>Pants</p>
</div>
</div>
</div>
<div class="srt">
<h3>Men's Clothing </h3>
<select id="sort">
<option value="">sort by feature</option>
<option value="High_low">High to Low</option>
<option value="Low_high">Low to High</option>
</select>
</div>
<div id="products_container"> </div>
<div id="footer"></div>
<script src="./js/product.js"></script>
</body>
</html>