-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<title>ControlX</title>
</head>
<body>
<div class="bg-blur"></div>
<main>
<div class="bg-opacity"></div>
<nav>
<div class="logo">Control<span>X</span></div>
<div class="customize">
<span class="tooltip">Customize</span>
<i class="fa-solid fa-gear"></i>
<ul class="control">
<li>
<label for="opacity">Opacity</label>
<input type="range" name="opacity" min="0.0" max="1.0" value=".5" step="0.1">
</li>
<li>
<label for="blur">Blur</label>
<input type="range" name="blur" min="1" max="10" value="1" step="1" data-size="px">
</li>
<li>
<label for="color">Color</label>
<input type="color" name="color" value="#ffffff">
</li>
</ul>
</div>
</nav>
<section class="text-content">
<h1>Customize your website</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Accusamus eveniet cumque ut delectus possimus ullam nulla aut eaque, exercitationem consequatur.</p>
</section>
</main>
<script src="app.js"></script>
</body>
</html>