-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Custom Price Range Slider</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="main">
<div class="gfg">
<p>GeeksForGeeks</p>
</div>
<div class="custom-wrapper">
<div class="header">
<h2 class="projtitle">
Price Range Slider
</h2>
</div>
<div class="price-input-container">
<div class="price-input">
<div class="price-field">
<span>Minimun Price</span>
<input type="number" class="min-input" value="2500">
</div>
<div class="price-field">
<span>Maximum Price</span>
<input type="number" class="max-input" value="8500">
</div>
</div>
<div class="slide-container">
<div class="price-slider"></div>
</div>
</div>
<div class="range-input">
<input type="range" class="min-range" min="0" max="10000" value="2500" step="1">
<input type="range" class="max-range" min="0" max="10000" value="8500" step="1">
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>