-
Notifications
You must be signed in to change notification settings - Fork 11
/
404.html
44 lines (38 loc) · 1.17 KB
/
404.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap" rel="stylesheet">
<title>Lucas Mellone's link tree</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="stylesheet" href="./styles.css">
<script src="./js/three.r134.min.js"></script>
<script src="./js/vanta.halo.min.js"></script>
<script>
window.addEventListener('DOMContentLoaded', () => {
// console.log('Vanta has been successfully loaded')
VANTA.HALO({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
baseColor: 0xf00a7f,
backgroundColor: 0xb0b0c,
amplitudeFactor: 0.20,
size: 1,
})
})
</script>
</head>
<body>
<div id="vanta-bg">
<header style="padding: 40px">
<h1> 404 </h1>
<p>This page isn't live yet.</p>
<a target="_blank" href="https://links.lucasmellone.com">head to my links tree for more info.</a>
</header>
</div>
</body>
</html>