-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/css/style.css">
<title>Update CSS variables with JS</title>
</head>
<body>
<header>
<div class="container">
<h1 class="title">
Update CSS Variables with <span class="hl">JS</span>
</h1>
</div>
</header>
<main>
<section class="controls">
<label for="spacing">Spacing</label>
<input type="range" name="spacing" min="0" max="200" value=10 data-metric="px">
<label for="blur">Blur</label>
<input type="range" name="blur" min="0" max="25" value=10 data-metric="px">
<label for="base-color">Base Color</label>
<input type="color" name="base-color" value=#ffc600>
</section>
<section>
<img src="assets/images/main-image.jpg" title="Photo by NASA">
</section>
</main>
<script src="./assets/js/script.js"></script>
</body>
</html>