-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
63 lines (55 loc) · 1.61 KB
/
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
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" />
<title>FitText</title>
<style type="text/css">
body {
background: #233a40;
color: #fff;
font: 16px/1.8 sans-serif;
}
.container {
width: 84%;
margin:0 auto;
max-width:1140px;
}
header {
width: 100%;
margin:0px auto;
}
h1 {
background: rgbb(0,0,0,0.2);
text-align: center;
color:#fff;
font: 95px/1 "Impact";
text-transform: uppercase;
display: block;
text-shadow:#253e45 -1px 1px 0,
#253e45 -2px 2px 0,
#d45848 -3px 3px 0,
#d45848 -4px 4px 0;
margin: 5% auto 5%;
}
</style>
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<div class="container">
<header>
<h1 id="fittext1">404 Error</h1>
</header>
<p> You have reached a page that does not exist. </p>
<font color="white"><p><i> “Things we lose have a way of coming back to us in the end, if not always in the way we expect.” ― JK Rowling </i></p></font>
<font color="white"><p><a href="https://shea08.github.io/"> Return to the shea08.github.io Homepage </a></p></font>
<font color="white"><p><a href="https://en.wikipedia.org/wiki/HTTP_404"> Check out this wiki page incase you were wondering what a 404 page is </a></p></font>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="jquery.fittext.js"></script>
<script type="text/javascript">
$("#fittext1").fitText();
$("#fittext2").fitText(1.2);
$("#fittext3").fitText(1.1, { minFontSize: '50px', maxFontSize: '75px' });
</script>
</body>
</html>