-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.shtml
57 lines (45 loc) · 1.77 KB
/
404.shtml
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
<html>
<head>
<link href = "design/css/Styles.css" rel="stylesheet">
<title>LaughBubble</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link href = "http://laughbubble.com/design/css/Styles.css" rel="stylesheet">
<link rel="apple-touch-icon" href="/lol.ico" />
<link rel="icon" type="image/ico" href="/lol.ico"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body onload="JavaScript:timedRedirect()">
<div class = "navbar navbar-inverse navbar-fixed-top">
<div class = "container">
<a href = "/main/posts.php" class = "navbar-brand">LaughBubble</a>
<button class = "navbar-toggle" data-toggle = "collapse" data-target = ".navHeaderCollapse">
<span class = "icon-bar"></span>
<span class = "icon-bar"></span>
<span class = "icon-bar"></span>
</button>
</div>
</div>
<style>
p{
color: black;
font-family: 'Raleway', sans-serif;
font-weight: 200;
margin-left: auto;
margin-right: auto;
font-size: 30px;
padding-top: 20%;
}
</style>
<script type="text/JavaScript">
redirectTime = "4000";
redirectURL = "http://laughbubble.com";
function timedRedirect() {
setTimeout("location.href = redirectURL;",redirectTime);
}
</script>
<p align="center">The page you were looking for could not be found.<br> You will be redirected to the main page shortly.</p>
<h1 align="center" class="hmHeader">?</h1>
</body>
</html>