-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
81 lines (59 loc) · 2.04 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
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Contato</title>
</head>
<body>
<header>
<!-- cabeçalho -->
<section>
<!-- logo -->
<img src="img/f4bank.png" id="logo">
</section>
<nav>
<!-- links -->
<ul>
<li><a href="landing-page.html" target="_blank">Início</a></li>
<li> <a href="contato.html">Contato</a></li>
<li> <a href="perguntas-frequentes.html">Perguntas Frequentes</a></li>
</ul>
</nav>
<section id="redes-sociais">
<!-- redes sociais -->
<a href="http://www.twitter.com" target="_blank"><img src="img/twitter.png" id="icone"></a>
<a href="http://www.instagram.com" target="_blank"><img src="img/instagram.png" id="icone"></a>
<a href="http://www.facebook.com" target="_blank"><img src="img/facebook.png" id="icone"></a>
</section>
</header>
<main>
<!-- corpo -->
<section >
<h3>Entre em contato conosco:</h3>
<form>
<label for="nome" >Nome</label>
<input type="text" name="nome" id="nome"> <br>
<label for="email" >Email</label>
<input type="email" name="email" id="email"> <br>
<label for="mensagem" >Mensagem</label>
<input type="text" name="mensagem" id="mensagem" style="width:100%; height:200px;"> <br>
</form>
</section>
</main>
<footer>
<!-- rodapé -->
<section>
<h3>SEGURANÇA</h3>
</section>
<section>
<h3>CREDIBILIDADE</h3>
</section>
<section>
<h3>INOVAÇÃO</h3>
</section>
</footer>
</body>
</html>