-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.47 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.47 KB
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ui glass & shadow library</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jersey+15&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="logo-search-grid-1x.png" type="image/x-icon">
</head>
<body>
<h1 class="h1">Perspective</h1>
<p class="paragraph">Rotating UI library</p>
<section id="section">
<div class="radius">
<div class="child"></div>
</div>
<div id="inputfeild">
<ul>
<li>
<label for="#">RotateX</label>
<input type="range" name="inp" id="input2" min="1"></li>
<li>
<label for="#">RotateY</label>
<input type="range" name="inp" id="input3" min="1"></li>
<li>
<label for="#">RotateZ</label>
<input type="range" name="inp" id="input4" min="1"></li>
<li>
<label for="#">Blur</label>
<input type="range" name="inp" id="input5" min="1"></li>
</ul>
</div>
</section>
<script src="main.js"></script>
</body>
</html>