-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
35 lines (35 loc) · 1.25 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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Artes by Lee</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="C:\Users\Helena Sousa\Desktop\Avaliação\Artes by lee.png">
</head>
<body>
<header>
<div class="logo">Artes by Lee</div>
<nav>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="sobre.html">Sobre</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</header>
<section id="contact" class="contact">
<h2>Contato</h2>
<form action="#">
<input type="text" id="name" name="name" placeholder="Seu nome" required>
<input type="email" id="email" name="email" placeholder="Seu e-mail" required>
<textarea id="message" name="message" placeholder="Sua mensagem" required></textarea>
<button type="submit">Enviar</button>
</form>
</section>
<footer>
<p>Contacte-nos em @artesbylee</p>
<p>© 2024 Helena Sousa - Todos os direitos reservados</p>
</footer>
</body>
</html>