-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.59 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Warp Type @kapaman</title>
<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=Poppins:wght@100;200;300;400;500;600&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<p style="margin-left:5rem" id="theme">Change Theme:<a
style="margin-left: 10px;display: flex;justify-content: center;" id="themeChange"><img height="28"
width="28" src="./nextTheme.png"></a></p>
<p style="margin-right:5rem;display: flex;justify-content: center;align-items: center;">Instant Death:
<label class="switch" style="margin-left:10px;">
<input type="checkbox">
<span class="slider round"></span>
</label>
</p>
</nav>
<div class="speed">
<p class="typingSpeed">0 WPM</p>
<p class="typingText"></p>
<input type="text" class="inputBox">
<button type="button" class="regoButton">Rego</button>
</div>
<div style="position:fixed; z-index:0; top:0; left:0; width:100%; height:100%;">
<canvas id="canvas" style="width:100%; height:100%;"></canvas>
</div>
<!-- <script src="./js/three.min.js"></script> -->
<!-- <script src="js/warpspeed.js"></script> -->
<script src="js/scripts.min.js"></script>
</body>
</html>