-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
executable file
·57 lines (56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Página não encontrada</title>
<script>
setInterval(() => {
window.location.href = '/';
}, 2000);
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.img {
width: 200px;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 20px;
}
.text {
font-size: 1.8rem;
font-weight: bold;
color: #000;
}
.p {
font-size: 1.3rem;
color: #000;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container">
<img class="img" src="./assets/images/cluey-sad-white.png" />
<div class="content">
<p class="text">Página não encontrada</p>
<p class="p">A página que procura não existe ou foi movida.</p>
</div>
</div>
</body>
</html>