-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
90 lines (72 loc) · 3.14 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
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="pt">
<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">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/animate.css">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="img/favico.ico" type="image/x-icon">
<title>Você Ensina | Contato</title>
</head>
<body>
<header class="header">
<div class="logo-top">
</div>
<nav id="menu-top" class="menu-top">
<button data-menu="button" aria-expanded="false" aria-controls="menu" class="button-menu"><img src="./img/5.svg" alt="Menu Mobile" class="hb-menu"></button>
<ul data-menu="list" id="menu" class="list-menu">
<li><a href="index.html">Home</a></li>
<li><a href="projeto.html">O Projeto</a></li>
<li><a href="contato.html">Contato</a></li>
<li><a href="voluntarios.html">Seja Voluntário</a></li>
</ul>
</nav>
</header>
<main class="animate__animated animate__fadeInDown">
<section class="mensagem container">
<div class="form-contato">
<h1>Contato</h1>
<h2>Mande-nos uma mensagem</h2>
<form class="formulario" action="/action_form.php">
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">Nome</label>
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="Nome Completo" required>
</div>
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">Email</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="[email protected]" required>
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Mensagem</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="Escreva sua mensagem aqui..."></textarea>
</div>
<div class="d-grid gap-2">
<button class="btn btn-primary" type="button" disabled>Enviar</button>
</div>
</form>
</div>
</section>
</main>
<footer class="footer animate__animated animate__fadeInUp">
<div class="footer-container container">
<div class="fist-footer">
<h4>seja voluntário</h4>
<p>Você Ensina. Alguns Direitos Reservados</p>
</div>
<div class="second-footer">
<div>
<a href="#menu-top"><img src="./img/yt-logo(grander).svg" alt="Logo Portal Você Ensina"></a>
</div>
<div class="link-footer">
<a href="http://" target="_blank" rel="noopener noreferrer">@voceensina</a>
<a href="http://" target="_blank" rel="noopener noreferrer">[email protected]</a>
</div>
</div>
</div>
</footer>
<script src="./js/modules/bootstrap.min.js"></script>
<script type="module" src="./js/script.js"></script>
</body>
</html>