-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
</link>
<title>cyb3r_spac3</title>
</head>
<body>
<div class="css-typing">
<p> -> cyb3r_spac3<span class="cursor"> </span></p>
<p> -> web: use mouse, arrow keys and WASD to navigate <span class="cursor"> </span></p>
<p> -> headset: click VR button at bottom, use controllers to interact <span class="cursor"> </span></p>
<p> -> sound on, CLICK ON FLOATING MOUSE TO CONTINUE <span class="cursor"> </span></p>
<p id="next"><a href="all.html"> -> advance into your screen...<span class="cursor"> </span></a></p>
</div>
<script src="index.js">
</script>
<script>
next.addEventListener("keydown", function (event) {
if (event.keyCode == 13) {
window.location.href = "white.html"
}
})
</script>
</body>
</html>