-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
52 lines (43 loc) · 898 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<title>Página não encontrada – Loop Infinito</title>
<link rel="stylesheet" type="text/css" href="/assets/css/screen.css" media="screen" />
<style type="text/css" media="screen">
#content {
width: 700px;
margin: auto;
font-family: "Helvetica Neue", Helvetica, "Lucida Grande", Arial, sans-serif;
text-align: center;
padding-top: 200px;
}
h1 {
font-size: 120px !important;
margin-bottom: 0px;
color: #ccc !important;
}
h2 {
font-size: 40px !important;
color: #ccc !important;
}
p {
margin: 50px 0px;
}
a {
color: #999;
font-size: 20px
}
a:hover {
color: #666;
}
</style>
</head>
<body>
<section id="content">
<h1>Erro 404</h1>
<h2>Página não encontrada</h2>
<p><a href="/">← Voltar para o .openBlog()</a></p>
</section>
</body>
</html>