-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.53 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
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicons/favicon-16x16.png">
<link rel="manifest" href="assets/favicons/site.webmanifest">
<link rel="mask-icon" href="assets/favicons/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#603cba">
<meta name="theme-color" content="#ffffff">
<meta charset="UTF-8">
<title>WizCube</title>
<link rel="stylesheet" href="style.css">
<script>
window.addEventListener("load",
function () {
document.body.style.opacity = 1;
});
</script>
</head>
<body>
<div class="container">
<div class="cube">
<!--injected html here:) -->
</div>
</div>
<div class="button-container">
<div>
<input value="3" min="1" max="50" placeholder="1-40" class="input" id="input-1" type="number"/>
<button id="button">Calculate</button>
</div>
<div>
<button id="rax">Rotation Axis X</button>
<button id="ray">Rotation Axis Y</button>
</div>
<div>
<button id="speedUp">Speed + </button>
<button id="speedDown">Speed - </button>
</div>
<div class="color-picker">
</div>
</div>
<div class="cal-container">
<h4 id="calculation"></h4>
</div>
<script src="script.js"></script>
</body>
</html>