-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
39 lines (27 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<!-- Definindo as configurações gerais -->
<meta http-equiv = "Content-Type" content = "text/html" />
<meta charset = "utf-8" />
<title> Page not Found </title>
<link rel = "icon" href = "img/navicon.png" type = "image/x-icon" />
<link rel = "shortcut icon" href = "img/404-error.png" type = "image/x-icon" />
<meta name = "author" content = "Alysson Machado">
<meta name = "description" content = "Esse link que você está compartilhando não vai te levar para nenhum site! Acho melhor você corrigir ele viu?!">
<!-- Definindo as configurações do conteúdo da página -->
<link rel = "stylesheet" type ="text/css" href = "css/404-style.css">
</head>
<body>
<div id = "container">
<div class = "content">
<h2> 404 </h2>
<h4> Oxente! Não era para ter alguma coisa aqui? </h4>
<p> A página que você procura não existe ou o programador do site esqueceu de indexar corretamente a página. Tente corrigir o link que você está utilizando ou entre em contato com o programador da página. </p>
<br />
<a href = "index.html" target = "_self">Página Inicial</a>
<a href = "mailto:alysson.barbosa@ee.ufcg.edu.br" target = "_blanck">Relatar essa barbaridade</a>
</div>
</div>
</body>
</html>