-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
82 lines (82 loc) · 3.8 KB
/
games.html
File metadata and controls
82 lines (82 loc) · 3.8 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Games</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link href="new.css" rel="stylesheet" type="text/css" />
<link href="snackbar.css" rel="stylesheet" type="text/css" />
<script src="https://kit.fontawesome.com/8df7d40c3b.js" crossorigin="anonymous"></script>
</head>
<body>
<nav class="bar" id="nav">
<h2 id="header"><a class="yex">Yex</a>'s Games</h2>
<a class="updown" id="updown" onclick="b=!b; xd()"><i id='ud' class="fa fa-fw fa-angle-double-up"></i></a>
<a href="index.html" data-tippy-content="Home"><i class="fa fa-fw fa-home"></i></a>
<a href="about.html" data-tippy-content="About"><i class="fa fa-fw fa-info-circle"></i></a>
<a class="active"><i class="fa fa-fw fa-gamepad"></i></a>
<div class="has-dropdown">
<button id="settings" data-tippy-content="Settings"><i class="fa fa-fw fa-gear"></i></button>
<ul class="dropdown">
<li class="dropdown-item">
<a onclick="theme('red', this)" href="#">Red</a>
</li>
<li class="dropdown-item">
<a onclick="theme('rgb(50, 150, 255)', this)" href="#" class="active">Blue</a>
</li>
<li class="dropdown-item">
<a onclick="theme('limegreen', this)" href="#">Green</a>
</li>
<li class="dropdown-item">
<input type="color" id="thmclr">
<a href="#" data-custom onclick="theme('white', this, true)">Custom</a>
</li>
</ul>
</div>
<a href="bookmarklets.html" data-tippy-content="Bookmarklets"><i class="fa fa-fw fa-bookmark"></i></a>
<a href="chat.html" data-tippy-content="Chat"><i class="fa fa-fw fa-wechat"></i></a>
<a href="https://discord.gg/V49EfgSWgr" data-tippy-content="Discord"><i class="fab fa-discord"></i></a>
<a href="ide.html" data-tippy-content="IDE"><i class="fa fa-fw fa-code"></i></a>
</nav>
<div class="loader">
<div class="loader-logo">
<img src="favicon.png" class="loader-logo-image"></img>
<h1 class="loader-logo-title"> Yex </h1>
</div>
<div class="loader-bar"></div>
</div>
<div class="loaded-overlay"></div>
<h1> Games </h1>
<p>These games should work and be unblocked, new games are being added pretty frequently as well.</p>
<hr>
<div id="list">
<a href="./cookie/index.html" class="game">Cookie Clicker</a>
<a href="./retro-bowl/retro.html" class="game">Retro Bowl</a>
<a href="./2048/index.html" class="game">2048</a>
<a href="./slope/index.html" class="game">Slope</a>
<a href="./bob/bob.html" class="game">Tunnel Rush</a>
<a href="./agario-minigame/dots.html" class="game">Agar.io Dots Minigame</a>
<a href="./gameboy/gameboydir.html" class="game">GameBoy Games</a>
<a href="./bloons1.html" class="game">Bloons TD</a>
<a href="./bloons.html" class="game">Bloons TD 2</a>
<a href="./basketball-stars/index.html" class="game">Basketball Stars</a>
<a href="./snake/index.html" class="game">Snake</a>
<a href="./sm64/index.html" class="game">Super Mario 64</a>
<a href="./paperio2/index.html" class="game">Paper.io 2</a>
<a href="./eagle/index.html" class="game">Minecraft</a>
<a href="./bb/index.html" class="game">Burrito Bison</a>
<a href="./lol/index.html" class="game">1v1.lol</a>
<a href="./run3/index.html" class="game">Run 3</a>
<a href="./geo.html" class="game">Geometry Dash</a>
<a href="./vex/index.html" class="game">Vex 6</a>
<a href="./motox3m/index.html" class="game">Moto X3M</a>
<a href="./yohoho/index.html" class="game">Yohoho.io</a>
<a href="./fnf/index.html" class="game">Friday Night Funkin</a>
</div>
<script src="popper.js"></script>
<script src="tippy.js"></script>
<script src="snackbar.js"></script>
<script src="updown.js"></script>
</body>
</html>