-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path404.html
91 lines (89 loc) · 2.68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="author" content="Silas Rodrigues" />
<meta
name="description"
content="Meu nome é Silas Rodrigues e este é meu portfolio com os principais trabalhos já realizados até então,
sou programador e desenvolvo aplicações web"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta name="theme-color" content="#470ba9" />
<meta name="copyright" content="Silas Rodrigues 2021" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="content-language" content="pt-br" />
<meta name="robots" content="index, follow" />
<meta
property="og:title"
content="Silas Rodrigues - Desenvolvedor Front End - Programador"
/>
<meta
property="og:description"
content="Meu nome é Silas Rodrigues e este é meu portfolio com todos os trabalhos já realizados até então,
sou programador e desenvolvo aplicações web"
/>
<meta
name="keywords"
content="Silas Rodrigues, freelancer, programador, desenvolvedor, portfolio, frontend, 404, error"
/>
<title>Error 404 - Page not found</title>
<link rel="stylesheet" href="assets/css/404.css" />
<link rel="shortcut icon" type="image/png" href="./favicon.ico?v=2" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="./apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./favicon-16x16.png"
/>
<link
rel="stylesheet"
href="https://unpkg.com/aos@3.0.0-beta.6/dist/aos.css"
/>
<link rel="manifest" href="./site.webmanifest" />
</head>
<body ondragstart="false">
<header>
<ul
class="menu"
data-aos="zoom-in"
data-aos-easing="ease-out-cubic"
data-aos-duration="2500"
data-aos-offset="0"
>
<li><a href="./">Voltar</a></li>
</ul>
</header>
<section class="intro">
<h1 data-aos="fade-down" data-aos-duration="2500" data-aos-offset="0">
Página não encontrada
</h1>
<p data-aos="fade-up" data-aos-duration="2500" data-aos-offset="0">
Utilize o menu para voltar para uma página válida
</p>
</section>
<footer>
<script>
document.write(
'Copyright © 2020-' +
new Date().getFullYear() +
'. Silas Rodrigues. Todos os direitos reservados.'
);
</script>
</footer>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 1200,
});
</script>
</body>
</html>