-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (27 loc) · 915 Bytes
/
index.php
File metadata and controls
33 lines (27 loc) · 915 Bytes
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
<!DOCTYPE html>
<html lang="en">
<!-- Copyright (C) 2020-Present Liam Siira <Liam@Siira.us> -->
<!-- This file is part of https://www.siira.us -->
<!-- This code can not be copied and/or distributed -->
<!-- without the express permission of Liam Siira -->
<head>
<title>Myth</title>
<meta name="author" content="Liam Siira">
<meta name="description" content="Myth - A mesmerizing pulsing hexagonal background.">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="keywords" content="Hexagons,Pulsing,Background,Javascript">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<canvas id="myth"></canvas>
<footer>
<small>© Copyright 2020, Liam Siira</small>
</footer>
<script src="myth.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
Myth.init();
});
</script>
</body>
</html>