-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
67 lines (65 loc) · 3.54 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>VanishGames - About</title>
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#FC6A04">
<meta name="msapplication-TileImage" content="/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#FC6A04">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<header>
<nav>
<button onclick="location.href='index'">VanishGames</button>
<button onclick="location.href='about'">About</button>
<button onclick="location.href='games'">Games</button>
</nav>
</header>
<!-- App Menu -->
<div id="app-menu-container">
<button id="app-menu-button">☰</button>
<div id="app-menu-grid">
<div class="app-menu-item" data-link="https://oragne.dev">
<img src="https://oragne.dev/favicon/apple-icon.png" alt="oragne.dev" />
<p>oragne.dev</p>
</div>
<div class="app-menu-item" data-link="https://vanishgames.oragne.dev">
<img src="https://vanishgames.oragne.dev/favicon/apple-icon.png" alt="VanishGames" />
<p>VanishGames</p>
</div>
<div class="app-menu-item" data-link="https://kahootfetcher.oragne.dev">
<img src="https://kahootfetcher.oragne.dev/favicon/apple-icon.png" alt="KahootFetcher" />
<p>KahootFetcher</p>
</div>
<div class="app-menu-item" data-link="https://sga.oragne.dev">
<img src="https://sga.oragne.dev/favicon/apple-icon.png" alt="SGA Trainer" />
<p>SGA Trainer</p>
</div>
</div>
</div>
<main>
<h1>About VanishGames</h1>
<p>Hey there, welcome to <strong>VanishGames</strong>! The best part? No ads, ever.</p>
<p>Honestly, I got tired of all those slow, clunky game sites that our school Chromebooks just couldn’t handle. So, I decided to make something simple, fast, and fun – without all the annoying ads getting in the way.</p>
<p>Hope you enjoy the games here at <strong>VanishGames</strong>! It’s a small collection for now, but it’s all about the fun.</p>
<p>Wanna support my work? Head over to this project’s <a class="link" href="https://github.com/orn8/vanishgames">GitHub Repo</a> and leave a star – that’s all you gotta do!</p>
<a href="games" class="button">Explore Games</a>
</main>
</body>
</html>