-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
88 lines (77 loc) · 2.08 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
<!DOCTYPE html>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200&display=swap" rel="stylesheet" />
<html Land="en">
<head>
<!--
<li>
<button onclick="window.location.href='index.html';" class="logo" id="saveForm">
Galaxy
</button>
</li>
-->
<meta charset="UTF-8" />
<title>Galaxy</title>
<link rel="shortcut icon" type="image/x-icon" href="img/Galaxy.png" />
<link rel="stylesheet" href="Home.css" />
<link rel="stylesheet" href="Button.css" />
</head>
<body>
<a style="position: relative; color: White; text-align: center; left: 35%; font-size: 30px;">This website is still in its Beta Stages – not everything will work</a>
</body>
</html>
<!--START OF STARBACK HTML-->
<!DOCTYPE html>
<html lang="en">
<body>
<img src="img/mountain2.png">
<div id="app">
<section id="hero">
<canvas id="canvas"></canvas>
<div class="buttons"></div>
</section>
</div>
<script src="index.js"></script>
<script>
const starback = new Starback("#canvas", {
width: window.innerWidth,
height: window.innerHeight,
type: "line",
frequency: 5,
slope: {
x: -1,
y: 10
},
directionX: 1,
speed: 3,
spread: -10,
randomOpacity: true,
backgroundColor: ["#0F2027", "#203A43", "#2C5364"],
quantity: 30,
});
</script>
</body>
</html>
<!--END OF STARBACK HTML-->
<style>
body {
overflow: hidden;
}
</style>
<body></body>
<body>
<!--WELCOME SCREEN-->
<div id="app">
<section id="hero">
<div class="content">
<h1>Welcome to <span class="text-highlight">Galaxy</span></h1>
</div>
</section>
</div>
<!--START OF HOME BUTTONS-->
<div class="container">
<div onclick="openGame()" class="btn"><a href="#">Open Cloaked</a></div>
<div onclick="window.location.href='Games.html';" class="btn"><a href="#">Games</a></div>
<div onclick="window.location.href='Apps/Apps.html';" class="btn"><a href="#">Proxies</a></div>
</div>
</body>
bo