-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherro_404.html
75 lines (75 loc) · 2.56 KB
/
erro_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
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>ERRO 404 | Vote Bem</title>
<link rel="icon" href="../imgs/favicon.ico">
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" />
<link rel="stylesheet" href="css/estilo.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script>
/*Script para voltar a pagina anterior*/
function goBack() {
window.history.back();
}
</script>
</head>
<style>
body{
font-family: 'Open Sans', sans-serif;
}
h1{
font-size: 8em;
color: white;
margin: 0px;
margin-top: 5%;
}
h2{
color: white;
font-size: 4em;
padding-top: 0px;
margin: 0px;
}
.limit_cont{
width: 50%;
margin: 0 auto;
}
@media only screen and (max-width: 900px) {/* tablets e menores */
.limit_cont {
width: 60%;
}
.personalizado{
font-size: 3em;
}
}
@media only screen and (max-width: 700px) {/* tablets e menores */
.limit_cont {
width: 90%;
}
}
@media only screen and (max-width: 330px) {/* tablets e menores */
.separador {
margin-top: 2%;
}
}
</style>
<body class="blue">
<div class="container">
<div class="center">
<div class="limit_cont">
<div class="col s12">
<h1>ERRO<br> 404</h1>
<h2 class="personalizado">PÁGINA NÃO</h2>
<h2 class="personalizado">ENCONTRADA</h2>
<div class="row">
<a onclick="goBack();" class="waves-effect waves-light btn-large blue lighten-2 separador" href=""><i class="material-icons left"><i class="material-icons">arrow_back</i></i>Voltar</a>
<a class="waves-effect waves-light btn-large blue lighten-2 separador" href="index.php"><i class="material-icons left">home</i>Home</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>