-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
59 lines (40 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Not found | SERPS - The PHP SERP Spider</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="/favicon.ico" />
<style>
body{
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
color: #fff;
background: #613636;
font-size: 18px;
margin-top:200px;
}
h1{
font-size: 4em;;
margin-bottom: 10px;
}
div{
margin-bottom: 10px;
}
a{
color: #211616;
text-decoration: none;
font-size: 0.8em;
}
</style>
</head>
<body>
<h1>
Not Found!
</h1>
<div>
The spider is probably hunting away...
</div>
<a href="/">Back to the home page</a>
</body>
</html>