-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
59 lines (52 loc) · 1.88 KB
/
error.html
File metadata and controls
59 lines (52 loc) · 1.88 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error</title>
<link rel="stylesheet" href="./style.css"/>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header>
<img src="./logo.png" id="logo"/>
<h2>CaosControl</h2>
<input type="checkbox" id="check"/>
<label for="check" class="icons">
<i class='bx bx-menu' id="open-menu"></i>
<i class='bx bx-x' id="close-menu"></i>
</label>
<nav>
<a href="./index.html">Home</a>
<a href="./perfil.html">Perfil</a>
<a href="./sistema.html">Sistema CaosControl</a>
<a href="./novidades.html">Portal de Novidades</a>
</nav>
</header>
<div class="error">
<h1>Error 404 | NOT FOUND</h1>
<a href="index.html"><button>Retornar ao início</button></a>
</div>
<footer>
<div id="information">
<div class="information-box"><p>Endereço
<div class="information-final"><p>Av. Campos Gerais, 29 - Parque Diadorim (TRÊS MARIAS - MG)</p></div>
</p></div>
<div class="information-box"><p>Horários
<div class="information-final"><p>Segunda a Sexta (08h - 18h)</p></div>
</p></div>
<div class="information-box"><p>Contato
<div class="information-final">
<p>caoscontrol023@gmail.com</p>
<p>@caoscontrol023</p>
</div>
</p></div>
</div>
<div id="copyright">
<p class="rodape">Todos os Direitos reservados ©</p>
<p class="rodape">Desenvolvido por: Guilherme Figueiredo</p>
<p class="rodape">*PROJETO INTEGRADOR SENAI 2024</p>
</div>
</footer>
</body>
</html>