forked from keshavgbpecdelhi/Web-Development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 965 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Scoped CSS Variables and JS</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="whole">
<div class="controler controls">
<h2>CSS Adjuster</h2>
<label for="spacing">Size:</label>
<input
id="spacing"
type="range"
name="size"
min="300"
max="600"
value="450"
data-sizing="px"
/>
<label for="blur">Visibility:</label>
<input
id="blur"
type="range"
name="visibility"
min="0"
max="25"
value="0"
data-sizing="px"
/>
<label for="border">Border Color</label>
<input id="border" type="color" name="border" value="#80b8e0" />
</div>
<img src="download.jpg" />
</div>
<script src="script.js"></script>
</body>
</html>