-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.html
59 lines (51 loc) · 1.15 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>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, minimum-scale=1, width=device-width">
<title>Error 404 (Not Found)</title>
<style>
* {
margin: 0;
padding: 0;
}
html,
code {
font: 15px/22px arial, sans-serif;
}
html {
background: #fff;
color: #222;
padding: 15px;
}
p {
margin: 11px 0 22px;
overflow: hidden;
}
ins {
color: #777;
text-decoration: none;
}
a img {
border: 0;
}
#wrapper {
margin: 170px auto 0;
padding: 0 70px;
}
#logo {
background: url('/images/lockup_developers_color_color.svg') no-repeat;
display: inline-block;
height: 25px;
width: 100%;
}
</style>
</head>
<body>
<div id="wrapper">
<a href="/"><span id="logo" aria-label="Google Codelabs"></span></a>
<p><b>404.</b> <ins>That’s an error.</ins></p>
<p>The requested URL was not found. <ins>That’s all we know.</ins></p>
</div>
</body>
</html>