-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (132 loc) · 7.06 KB
/
index.html
File metadata and controls
143 lines (132 loc) · 7.06 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Project Unbannable</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/main.css" />
<script src="https://kit.fontawesome.com/6a6fd8928e.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png">
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg">
</head>
<body class="is-preload">
<div id="page-wrapper">
<!-- Header -->
<div id="header">
<!-- Logo -->
<h1><a href="index.html" id="logo">Project Unbannable</a></h1>
<!-- Nav -->
<nav id="nav">
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li>
<a href="#">Games</a>
<ul>
<li><a href="games/BGames.html">BGames</a></li>
<li><a href="games/bonk.html">bonk</a></li>
<li><a href="games/Classwork.html">Classwork</a></li>
<li><a href="games/Cookieduck.html">Cookieduck</a></li>
<li><a href="games/Cool UBG.html">Cool UBG</a></li>
<li><a href="games/Cubes 2048.html">Cubes 2048</a></li>
<li><a href="games/Dino Game.html">Dino Game</a></li>
<li><a href="games/Extreme Math.html">Extreme Math</a></li>
<li><a href="games/Math Games 66.html">Math Games 66</a></li>
<li><a href="games/SHS Games.html">SHS Games</a></li>
<li><a href="games/Slow Roads.html">Slow Roads</a></li>
<li><a href="games/TBG95.html">TBG95</a></li>
<li><a href="games/Turtle Games.html">Turtle Games</a></li>
</ul>
</li>
</li>
</ul>
</nav>
</div>
<!-- CTA -->
<section id="cta" class="wrapper style3">
<div class="container">
<header>
<h2>Bored?</h2>
<a href="#" class="button" id="randomButton">Randomize</a>
</header>
</div>
</section>
<!-- Highlights -->
<section class="wrapper style1">
<div class="container">
<div class="row gtr-100">
<section class="col-4 col-12-narrower">
<div class="box highlight">
<i class="icon solid major fa-bug"></i>
<p>This website is hosted on GitHub, so any bugs or errors found can be sent straight to the repository so I will be able to take care of them.</p>
</div>
</section>
<section class="col-4 col-12-narrower">
<div class="box highlight">
<i class="icon solid major fa-wifi"></i>
<p>This website embeds other websites into this one to make them playable if they are blocked on your network.</p>
</div>
</section>
<section class="col-4 col-12-narrower">
<div class="box highlight">
<i class="icon solid major fa-envelope"></i>
<p>I am always open for feedback and recommendations, so be sure to contact me in the footer if you have anything.</p>
</div>
</section>
</div>
</div>
</section>
<!-- Footer -->
<div id="footer">
<div class="container">
<div class="row">
<section class="row-6 row-6-narrower row-12-mobilep">
<h3>Links to Stuff</h3>
<ul class="links">
<li><a href="https://forms.gle/tFvQAzZTvuNmbt8F7">Website Submission</a> <a href="https://forms.gle/bqytHCgZoBAoGGu27">Broken Links</a> <a href="https://forms.gle/4BjESarurh43eR1UA">Question(s)</a></li>
</ul>
</section>
</div>
</div>
<!-- Icons -->
<ul class="icons">
<li><a href="https://x.com/PBitMinecraft" class="icon brands fa-x-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://github.com/PBitMinecraft" class="icon brands fa-github"><span class="label">GitHub</span></a></li>
<li><a href="https://youtube.com/@pbitminecraft" class="icon brands fa-youtube"><span class="label">Youtube</span></a></li>
<li><a href="https://twitch.tv/pbitminecraft" class="icon brands fa-twitch"><span class="label">Twitch</span></a></li>
</ul>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script>
document.getElementById('randomButton').addEventListener('click', function(event) {
event.preventDefault();
var urls = [
'games/BGames.html',
'games/bonk.html',
'games/Classwork.html',
'games/Cookieduck.html',
'games/Cool UBG.html',
'games/Cubes 2048.html',
'games/Dino Games.html',
'games/Extreme Math.html',
'games/Math Games 66.html',
'games/SHS Games.html',
'games/Slow Roads.html',
'games/TBG95.html',
'games/Turtle Games.html',
];
var randomIndex = Math.floor(Math.random() * urls.length);
var randomUrl = urls[randomIndex];
window.location.href = randomUrl;
});
</script>
</body>
</html>