-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (57 loc) · 3.12 KB
/
index.html
File metadata and controls
67 lines (57 loc) · 3.12 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
<!DOCTYPE html>
<html>
<head>
<title>XENON's Website</title>
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="styles.css">
</head>
<body style="background: #ffffff url('resources/xbox.jpg') center center/cover no-repeat fixed;">
<h1>XENON's Website</h1>
<br>
<div style="display: flex; flex-direction: row; justify-content: center; align-items: center; text-align: center;">
<div style="margin-left: 25px;">
<h2>
<img src="resources/bd.webp" alt="Icon" style="width: 40px; height: 40px; border-radius: 50%; vertical-align: middle; margin-right: 10px;">
BallsDex Fork
</h2>
<p>A fork of BallsDex with a battle package and a merge package.<br>I recommend only taking the packages from this.</p>
<button onclick="location.href = 'https://github.com/XEN486/BallsDex-Fork';">Get it on GitHub!</button>
</div>
<div style="margin-left: 25px;">
<h2>
<img src="resources/doomBtn.png" alt="Icon" style="width: 50px; height: 50px; border-radius: 50%; vertical-align: middle; margin-right: 10px;">
DOOM in Geometry Dash
</h2>
<p>DOOMGeneric running as a Geometry Dash mod.<br>For Geode 3.2.0 (will update when I get around to it)</p>
<button onclick="location.href = 'https://github.com/XEN486/gDOOM';">Get it on GitHub!</button>
</div>
<div style="margin-left: 25px;">
<h2>
<img src="resources/rc8_temp.png" alt="Icon" style="width: 50px; height: 50px; border-radius: 50%; vertical-align: middle; margin-right: 10px;">
Rust Chip-8
</h2>
<p>A small Chip-8 emulator I made to learn Rust.<br>Supports Chip-8, SuperChip, and partially XO-Chip!</p>
<button onclick="location.href = 'https://github.com/XEN486/Chip8-rs';">Get it on GitHub!</button>
</div>
<div style="margin-left: 25px;">
<h2>
<img src="https://github.com/XEN486/NES/blob/main/resources/icon.png?raw=true" alt="Icon" style="width: 50px; height: 50px; border-radius: 50%; vertical-align: middle; margin-right: 10px;">
Rust NES
</h2>
<p>A simple NES emulator I made in Rust.<br>Read the README on how to use the emulator.</p>
<button onclick="location.href = 'https://github.com/XEN486/NES';">Get it on GitHub!</button>
</div>
</div>
<div style="width: 100%; text-align: center; padding: 20px; position: fixed; bottom: 0; left: 0;">
<button onclick="window.location.href='tools.html';" style="padding: 10px 20px; background-color: #4CAF50; color: white; border: none; border-radius: 5px; cursor: pointer;">
Tools
</button>
<button onclick="window.location.href='doom.html';" style="padding: 10px 20px; background-color: #4CAF50; color: white; border: none; border-radius: 5px; cursor: pointer;">
DOOM
</button>
<button onclick="window.location.href='tutorial_html/index.html';" style="padding: 10px 20px; background-color: #4CAF50; color: white; border: none; border-radius: 5px; cursor: pointer;">
JamesM archive
</button>
</div>
</body>
</html>