-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
59 lines (46 loc) · 1.68 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
<!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>JM Viagens - Contato</title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="imagens/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="principal">
<header class="header-top">
<img src="imagens/logo.png" alt="logotipo">
<nav class="header-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="quem_somos.html">Quem Somos</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</header>
<img src="imagens/contato.png" class="img-topo" alt="imagem contato">
<main>
<form action="#" method="POST" class="fale-conosco">
<div class="nome">
<label>Nome:</label>
<input type="text">
</div>
<div class="email">
<label>E-mail:</label>
<input type="email" required placeholder="">
</div>
<div class="texto">
<label>Texto:</label>
<textarea name="texto" id="form-texto" cols="30" rows="10"></textarea>
</div>
<div>
<input type="submit" value="Enviar" class="button">
</div>
</form>
</main>
<footer>Todos os direitos reservados ©</footer>
</div>
</body>
</html>