-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameDevelopment.html
More file actions
59 lines (56 loc) · 2.16 KB
/
Copy pathGameDevelopment.html
File metadata and controls
59 lines (56 loc) · 2.16 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>
<!--
____ ____ ____________ ______ _
/ __ )/ __ )/ ____/ ____/ / ____/___ _____ ___ (_)___ ____ _
/ __ / __ / /_ / / / / __/ __ `/ __ `__ \/ / __ \/ __ `/
/ /_/ / /_/ / __/ / /___ / /_/ / /_/ / / / / / / / / / / /_/ /
/_____/_____/_/ \____/ \____/\__,_/_/ /_/ /_/_/_/ /_/\__, /
/____/
-->
<head>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script type="text/javascript" src="cookieconsent.js"></script>
<link rel="apple-touch-icon" sizes="120x120" href="image/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="image/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="image/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<style>
body {
background-color: black;
color: red;
font-family: monospace
}
hr {
color: red;
}
</style>
<title>Page Maintenence</title>
</head>
<body>
<embed style="height:50px; width:100%; " src="banner.html">
<h1 style="text-align: center; border: 5px solid red">BBFC Gaming</h1>
<div id="buttons">
<a href="nojs.html" class="buttons-link">No JavaScript?</a>
</div>
<script>
$(function(){
$("#buttons").load("buttons.html");
});
</script>
<hr>
<br>
<br>
<h2 style="text-align: center;">Under Development</h2>
<center><b>We're doing some work on this page right now. It'll be back as soon as we can fix it!</b></center>
<br>
<br>
<br>
</body>
<div id="myCookieConsent">
<a id="cookieButton">Understood</a>
<div>This website is using cookies. <a href="privacypolicy.html">More details</a></div>
</div>
</html>