-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontato.html
More file actions
45 lines (38 loc) · 1.37 KB
/
contato.html
File metadata and controls
45 lines (38 loc) · 1.37 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contato | Cominho Mingos _ Tech-Solution SA SA</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Início</a></li>
<li><a href="sobre.html">Sobre</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</header>
<section class="contact">
<h1>Entre em Contato</h1>
<form id="contact-form">
<label for="name">Nome</label>
<input type="text" id="name" name="name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
<label for="message">Mensagem</label>
<textarea id="message" name="message" rows="4" required></textarea>
<button type="submit">Enviar</button>
</form>
<div id="form-response"></div>
</section>
<footer>
<p>© 2025 [<b>TechSolutions,SA</b>]. <br><small>Todos os direitos reservados.</small></p>
</footer>
<script src="script.js"></script>
</body>
</html>