-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·95 lines (87 loc) · 3.37 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HenWorld</title>
<link rel="icon" type="image/x-icon" href="./src/favicon-32x32.png">
<link rel="stylesheet" href="styles.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=Exo&display=swap" rel="stylesheet">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r124/three.min.js"
integrity="sha512-jeYvJdyAYkpQCY/omvCYQo89qA5YxDW4JBT7COPsHT2sOAanwxkZRFeP9gc69b5reSDpZIoyCqZQZcWZkbB5Gw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r124//three.js"
integrity="sha512-tmdOKTY7I6MOUcCL/9fa4s+BnBCgEuifJImOX46m36+rxVMcgHEPGLVoCXHR6ZvjcKGoVixEiBKE4LcYLnv0Cw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<canvas id="bg"></canvas>
<div id="panel">
<div id="plaintext">
<div id="yerk">1</div>
<br><br>
<!-- <a href="mailto:[email protected]">[email protected]</a>
<br> -->
<!-- Instagram <a href="https://www.instagram.com/hennohail/?hl=en"> @hennohail </a>
<br><br> -->
</div>
<div id="info2">
<!-- <h1 id="head"><br><br><br>In the Beginning...</h1> -->
<div id="plaintext">
<br><br><br>
0. In the Beginning...
<br>
1. we were alive
<br>
1. We woke to the world
<br>
2. A blink
<br>
3. But alas we died
<br>
5. It was too hot for us
<br>
8. And each death each life
<br>
13. Felt like a blink
<br>
21. Waking just to die
<br>
34. Dying just to wake
<br>
55. It was deja vu
<br>
89. Looped
<br>
144. Sepsis
<br>
233. Was our birthplace
<br><br>
𒀱
<br><br>
</div>
<!-- <a id="head" href="https://github.com/GanyuHail">Github</a>
<br><br> -->
<div id="yerk">
<br><br>
<a href="#" onclick="document.getElementById('panel').style.display = 'none'" ;>cycle.end</a>
</div>
</div>
<script>
function myFunction() {
var x = document.getElementById("panel");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
};
</script>
</body>
<script type="module" src="./script.js"></script>
</html>