-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
55 lines (47 loc) · 2.03 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
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contato</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<h1>Entre em Contato</h1>
<p>Fique à vontade para entrar em contato comigo!</p>
<section class="menu">
<tr>
<td><a href="index.html">Principal</a></td>
<td><a href="portfolio.html">Portfólio</a></td>
<td><a href="contato.html" >Contato</a></td>
</tr>
</header>
<section class="redes-sociais">
<h2>Redes Sociais</h2>
<ul>
<li><img src="./imagens/logo_meta.png" style="width:5%;" alt="Facebook"><a href="https://www.facebook.com/mgdegenhardt" target="_blank">Facebook</a></li>
<li><img src="./imagens/logo_instagram.png" style="width:5%;" alt="Instagram"><a href="https://www.instagram.com/mgdegenhardt/" target="_blank">Instagram</a></li>
<li><img src="./imagens/logo_linkedin.png" style="width:5%;" alt="Linkedin"><a href="https://www.linkedin.com/in/marcos-germano-degenhardt-24b53125b/" target="_blank">LinkedIn</a></li>
</ul>
</section>
<section class="formulario-contato">
<h2>Envie uma Mensagem</h2>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome" required>
<br>
<label for="email">E-mail:</label>
<input type="email" id="email" name="email" required>
<br>
<label for="mensagem">Mensagem:</label>
<textarea id="mensagem" name="mensagem" required></textarea>
<br>
<button type="submit">Enviar</button>
</form>
</section>
<footer>
<p>© 2024 Meu Nome. Todos os direitos reservados.</p>
</footer>
</body>
</html>