-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (55 loc) · 2.33 KB
/
Copy pathindex.html
File metadata and controls
59 lines (55 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Ludos
</title>
<meta name="description" content="Ludos is a site designed for playing online HTML games in your browser!">
<meta name="keywords" content="ludos, html, browser, games, online, fun, 3kh0, mythicaltrashcan, 1_mythical, holymythicalman">
<meta name="author" content="HolyMythicalMan">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
<script src="script.js"></script>
<script type="text/javascript" src="./EaglerEmbed/embed.js"></script>
<link type="image/png" rel="shortcut icon" href="./favicons/ludos-favicon.png" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1576606614118788" crossorigin="anonymous"></script>
</head>
<body>
<h1 style="margin-bottom: 100px;">
Welcome to <img draggable="false" class="ludosLogo" src="./favicons/ludos.png" width="250" height="250">
</h1>
<h2 style="font-size: 40px;">
A site designed for playing online HTML games in your browser!
</h2>
<div>
<button class="main" onclick="viewGames()">Play Games</button>
</div>
<div>
<button class="mirror" onclick="selectMirror()">Mirror Links</button>
</div>
<h2>
<button class="travesty" onclick="openTravesty()">Community Travesty</button>
<button class="github" onclick="openGithub()">GitHub</button>
<button class="youtube" onclick="openYoutube()">YouTube</button>
<button class="rumble" onclick="openRumble()">Rumble</button>
</h2>
<div>
<iframe class="rumble" width="640" height="360" src="https://rumble.com/embed/v6ycs1k/?pub=4ldocb" frameborder="0" allowfullscreen></iframe>
</div>
<div id="embed"></div>
<table>
<td class="footer">
<a href="https://github.com/HolyMythicalMan/Ludos"><strong>Ludos</strong></a>
<a>(2022-2025)</a>
</td>
</table>
</body>
<script>
const links = ["assetsLink", "villadeLink"];
links.forEach(link => {
if (localStorage.getItem(link) === null) {
localStorage.setItem(link, location.protocol + '//' + location.host.replace('www', link.slice(0, -4)));
}
});
</script>
</html>