-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
41 lines (36 loc) · 1.19 KB
/
contact.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Entre em contato</title>
<link href="./css/contact.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="assets/img/logo_brain.png" />
</head>
<body>
<header class="topnav">
<a class="logo" href="./"
><img src="./assets/img/logo_brain.png" alt="Logo"
/></a>
<a class="inicio" href="./">Início</a>
<a class="testes" href="./testes.html">Testes</a>
<a class="sobre" href="./about.html">Sobre</a>
<a class="contato active" href="./contact.html">Contato</a>
<a class="login" id="cookieData"></a>
</header>
<h1 style="text-align: center">FAZER PÁGINA DE CONTATO</h1>
<div id="loader-wrapper" class="loader-wrapper">
<div id="loader" class="loader box-loader">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<script src="./js/cookieData.js"></script>
<script src="./js/contact.js"></script>
<script src="./js/loader.js"></script>
<script src="./js/background.js"></script>
</body>
</html>