forked from HTML5-Games/html5-games.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
37 lines (32 loc) · 1.3 KB
/
404.html
File metadata and controls
37 lines (32 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>404 Error!</title>
<!-- Shortcut Icon -->
<link rel="icon" type="image/x-icon" href="https://dl.dropboxusercontent.com/u/62044718/favicon.ico">
<!--href="img/favicon.ico" is supposed to work but is not working-->
<!--Placed icon in my public dropbox for temporary use until problem is resolved-->
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/style2.css" rel="stylesheet" media="screen">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div align="center" style="background:#080808;border:1px solid #252525">
<h1>404 Attack!</h1>
<canvas id="404canvas">
<a href="html5-games.github.io/home.html">Oh noes! Don't worry, click here to head back to the home page.</a>
</canvas>
</div>
</body>
<!--Scripts-->
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="http://www.parsecdn.com/js/parse-1.2.7.min.js"></script>
<script src="js/404.js"></script>
</html>