-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathgames.html
More file actions
63 lines (53 loc) · 1.85 KB
/
games.html
File metadata and controls
63 lines (53 loc) · 1.85 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
<!DOCTYPE html>
<html>
<head>
<title>Owl Hub</title>
<meta charset = "utf-8">
<link rel = "shortcut icon" type = "image/x-icon" href="Logo.ico" />
<meta name = "author" content = "Owl Hub" />
<meta name = "description" content = "Owl Hub" />
<meta name = "keywords" content = "Owl, Hub, OwlHub, script, lua, krnl" />
<meta property = "og:title" content = "Owl Hub" />
<meta property = "og:description" content = "Official website for Owl Hub" />
<meta property = "og:type" content = "website" />
<meta property = "og:url" content = "https://owlhub.ga" />
<meta property = "og:secure_url" content = "https://owlhub.ga">
<meta property = "og:image" content = "https://owlhub.ga/Logo.ico" />
<style>
body {
background-color: rgb(25, 25, 25);
color: white;
font-family: "Trebuchet MS";
}
body::-webkit-scrollbar {
width: 12px;
}
body::-webkit-scrollbar-thumb {
background-color: rgb(80, 80, 80);
}
#gamesLabel {
background-color: rgb(25, 25, 25);
color: rgb(255, 255, 255);
border: 0px;
text-align: center;
}
</style>
</head>
<body>
<center>
<h4 id="gamesLabel"></h20>
<br>
<br>
</center>
<script type="text/javascript">
const gamesBox = document.getElementById("gamesLabel");
const games = new XMLHttpRequest();
const gamesURL = "https://crishoux.github.io/OwlHub/Games.txt";
games.open("GET", gamesURL, true);
games.send();
games.onreadystatechange = () => {
gamesBox.innerText = games.responseText;
}
</script>
</body>
</html>