-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
executable file
·35 lines (32 loc) · 1013 Bytes
/
404.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Morgridge Software Assurance</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- styles -->
<link rel="stylesheet" type="text/css" href="styles/styles.css" />
<script>
// trigger the button using the keyboard
//
document.addEventListener("keydown", function(event) {
if (event.keyCode === 13) {
document.getElementById("button").focus();
}
});
</script>
</head>
<body>
<div align="center">
<br />
<br />
<a href="index.html"><image href="index.html" src="images/other/gator.gif" /></a>
<br />
<h2 style="font-size:30px">Whoops,<br/> The Page You're Looking For Can Not Be Found!</h2>
<a href="index.html"><button id="button" type="submit" class="btn btn-lg btn-primary">Return</button></a>
</div>
</body>
</html>