-
Notifications
You must be signed in to change notification settings - Fork 1
/
product.html
104 lines (80 loc) · 2.33 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
95
96
97
98
99
100
101
102
103
104
<html>
<head>
<link rel="stylesheet" type="text/css" href="style/catalogue.css" />
<script type="text/javascript" src="Filter/jquery.js"></script>
<link rel="stylesheet" href="style/jquery.ui.all.css"/>
<script src="Filter/jquery-1.7.1.min.js"></script>
<script src="Filter/jquery.ui.core.js"></script>
<script src="Filter/jquery.ui.widget.js"></script>
<script src="Filter/jquery.ui.mouse.js"></script>
<script src="Filter/jquery.ui.slider.js"></script>
<link rel="stylesheet" href="style/demos.css"/>
<script type="text/javascript" src="Filter/filter.js"></script>
<style>
#demo-frame > div.demo { padding: 10px !important; };
#slider
{
position:relative;
top:-50px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="header">
<select id="sort">
<option value="select" selected="selected">Select</option>
<option value="name">Sort By Brand Name</option>
<option value="color">Sort By Color</option>
</select>
<div class="headerText">
<h1>Product Catalogue</h1>
</div>
</div>
<div class="brand">
<label for="A"></label>
<input type="checkbox" id="A"/>
<br/>
<label for="B"></label>
<input type="checkbox" id="B" />
<br/>
<label for="C"></label>
<input type="checkbox" id="C" />
<br/>
<label for="D"></label>
<input type="checkbox" id="D" />
</div>
<div class="color">
<label for="clr_1"></label>
<input type="checkbox" id="clr_1" />
<br/>
<label for="clr_2"></label>
<input type="checkbox" id="clr_2" />
<br/>
<label for="clr_3"></label>
<input type="checkbox" id="clr_3"/>
<br/>
<label for="clr_4"></label>
<input type="checkbox" id="clr_4"/>
</div>
<div class="availability">
<select id="toggle">
<option value="select" selected="selected">Select</option>
<option value="avail">Available</option>
<option value="sold">sold</option>
</select>
</div>
<div class="display">
</div>
<div class="slider">
<div class="demo">
<p>
<label for="amount"></label>
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
</p>
<div id="slider-range"></div>
</div>
</div>
</div>
</body>
</html>