-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (68 loc) · 3.37 KB
/
index.html
File metadata and controls
82 lines (68 loc) · 3.37 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="Styles.css">
<link rel="icon" href="./7xXvLp1.webp" type="image/x-icon">
<meta charset="UTF-8">
<h1>
Made by a student for students.
<span class="magic">
<span class="magic-star">
<svg viewBox="0 0 512 512">
<path
d="M512 255.1c0 11.34-7.406 20.86-18.44 23.64l-171.3 42.78l-42.78 171.1C276.7 504.6 267.2 512 255.9 512s-20.84-7.406-23.62-18.44l-42.66-171.2L18.47 279.6C7.406 276.8 0 267.3 0 255.1c0-11.34 7.406-20.83 18.44-23.61l171.2-42.78l42.78-171.1C235.2 7.406 244.7 0 256 0s20.84 7.406 23.62 18.44l42.78 171.2l171.2 42.78C504.6 235.2 512 244.6 512 255.1z" />
</svg>
</span>
<span class="magic-star">
<svg viewBox="0 0 512 512">
<path
d="M512 255.1c0 11.34-7.406 20.86-18.44 23.64l-171.3 42.78l-42.78 171.1C276.7 504.6 267.2 512 255.9 512s-20.84-7.406-23.62-18.44l-42.66-171.2L18.47 279.6C7.406 276.8 0 267.3 0 255.1c0-11.34 7.406-20.83 18.44-23.61l171.2-42.78l42.78-171.1C235.2 7.406 244.7 0 256 0s20.84 7.406 23.62 18.44l42.78 171.2l171.2 42.78C504.6 235.2 512 244.6 512 255.1z" />
</svg>
</span>
<span class="magic-star">
<svg viewBox="0 0 512 512">
<path
d="M512 255.1c0 11.34-7.406 20.86-18.44 23.64l-171.3 42.78l-42.78 171.1C276.7 504.6 267.2 512 255.9 512s-20.84-7.406-23.62-18.44l-42.66-171.2L18.47 279.6C7.406 276.8 0 267.3 0 255.1c0-11.34 7.406-20.83 18.44-23.61l171.2-42.78l42.78-171.1C235.2 7.406 244.7 0 256 0s20.84 7.406 23.62 18.44l42.78 171.2l171.2 42.78C504.6 235.2 512 244.6 512 255.1z" />
</svg>
</span>
<span class="magic-text">Barnacle</span>
</span>
</h1>
<!-- Mr. Jailbreak time -->
<button id="Barnacle">Open</button>
<script>
const Barnacle = document.getElementById("Barnacle");
Barnacle.addEventListener("click", function() {
window.location.href = '/GameSite/index.html';
});
</script>
<!-- Some cool configurations -->
<canvas id="snowflakes"></canvas>
<script>
const Window = window;
Window.Config = {
generatorDelay: { min: 1, max: 20 },
speed: 0.5,
x_axis_rate: 0.05,
weight: 0.5,
size: 1.5,
z_axis_rate: 0.05,
color: { b: 255, a: 0.8 },
wind: 0
};
</script>
<!-- Import some external libraries -->
<script src="/Effects/Mouse.js"></script>
<!-- Give our program some life I guess. -->
<meta charset="UTF-8">
<title>Barnacle</title>
<meta content="Barnacle" property="og:title" />
<meta content="This beautiful Website by Johnny (iamanewma__n on discord) is a good website with tons of games for you to play at school with a beautiful user interface Barnical on top" property="og:description" />
<meta content="https://barnical.github.io" property="og:url" />
<meta content="7xXvLp1.webp" property="og:image" />
<meta content="#43B581" data-react-helmet="true" name="theme-color" />
<!-- Cherish the almighty power of our external files. -->
<script src="Script.js"></script>
<script src="/Effects/Snowflakes.js"></script>
</head>
</html>