-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
43 lines (40 loc) · 1.6 KB
/
contato.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
<!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>Contato</title>
<link rel="stylesheet" href="./estilos/style.css">
</head>
<body>
<header class="cabecalho">
<nav class="cabecalho__menu">
<a class="cabecalho__menu__link" href="index.html">Home</a>
<a class="cabecalho__menu__link" href="about.html">Sobre Mim</a>
<a class="cabecalho__menu__link" href="curriculo.html">Curriculo</a>
<a class="cabecalho__menu__link" href="projetos.html">Meus Projetos</a>
<a class="cabecalho__menu__link" href="contato.html">Contato</a>
</nav>
</header>
<main class="apresentacao">
<section class="apresentacao__conteudo">
<h1 class="apresentacao__conteudo__titulo"><strong class="titulo_strong">Entre em Contato</strong></h1>
<form id="contactForm" class="formulario">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="mensagem">Mensagem:</label>
<textarea id="mensagem" name="mensagem" required></textarea>
<button type="submit" class="botao_enviar">Enviar</button>
</form>
<p id="mensagemSucesso" class="mensagemSucesso"></p>
</section>
</main>
<footer class="rodape">
<p>Desenvolvido Por Adriano Sousa</p>
</footer>
<script src="index.js.js"></script>
</body>
</html>