-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
63 lines (59 loc) · 2.17 KB
/
error.html
File metadata and controls
63 lines (59 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>404 Page</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Font Awesome Icons -->
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<!-- CSS for Sidebar -->
<link href="../stylesheets/simple-sidebar.css" rel="stylesheet">
</head>
<body>
<style type="text/css" media="screen">
body{
/*background:url("resources/jittery.gif") no-repeat center center fixed;*/
background-color: black;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.container.main{
padding-top:13%;
}
.jumbotron.jumbotitle {
margin-top: 11.9%;
padding-top: 5%;
padding-bottom: 5%;
background:transparent;
opacity: .9;
}
.title{
text-align:center;
color: white !important;
}
</style>
<div class="jumbotron jumbotitle">
<div class = "text">
<h1 class="title">You've arrived at the point of no return.</h1>
<p class="title">Please go back..</p>
<p class="title">
<a href="splash.html" class="btn btn-danger btn-lg" id="danger">GO BACK!!</a>
</p>
</div>
</div>
<!-- jQuery Version 1.11.0 -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script>
$("#inputbox").effect( "shake" );
</script>
</body>
</html>