-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
68 lines (63 loc) · 2.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="contato.css">
<title>Analista de Dados</title>
</head>
<body>
<header>
<div class="logo">
<img src="img/logo.png" alt="Logo do Computador" class="imagem-logo">
</div>
<nav>
<ul>
<li><a href="index.html">Início</a></li>
<li><a href="sobre.html">Sobre</a></li>
<li><a href="servico.html">Serviço</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</header>
<main>
<section class="contact-container">
<div class="contact-text">
<h1>Entre em Contato</h1>
<p>Se você tiver alguma dúvida ou quiser saber mais sobre os nossos serviços, fique à vontade para nos contactar!</p>
<p>Estamos aqui para ajudar você.</p>
<div class="social-links">
<a href="https://github.com" target="_blank" aria-label="GitHub">
<img src="img/github.png" alt="GitHub" />
</a>
<a href="https://linkedin.com" target="_blank" aria-label="LinkedIn">
<img src="img/linkedin.png" alt="LinkedIn" />
</a>
</div>
</div>
<div class="contact-form">
<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="messageSent" class="hidden"></div>
</div>
</section>
</main>
<footer>
<div class="footer-container">
<p>© 2024 Aline Melo. Todos os direitos reservados.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>
<!--Porjeto descodifica trilha 2-->