-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfale conosco.html
74 lines (61 loc) · 2.32 KB
/
fale conosco.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/flex.css" />
<title>Fale conosco</title>
<script type="text/javascript" src="js/covid.js"></script>
</head>
<body class="acessibilidade">
<!--Aqui esta a navegação do site-->
<nav id="menu">
<ul>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="quem somos.html ">Quem somos</a></li>
<li><a href="fale conosco.html ">Fale conosco</li></a>
<li><a href="news.html ">News</a></li>
</ul>
</nav>
<main>
<h1>Fale conosco</h1>
<div>
<form name = "myForm" onsubmit = "return(validate());">
<div>
Digite seu nome:
<input type = "text" name = "Name" />
</div>
<div>
Digite seu email:
<input type = "text" name = "EMail" />
</div>
<div>
<select name = "Genero">
<option value = "-1" selected>Escolha</option>
<option value = "1">Masculino</option>
<option value = "2">Feminino</option>
<option value = "3">Outro</option>
</select>
</div>
<div>
<input type = "submit" value = "Submit" />
</div>
</table>
</form>
<a href="index.html">Voltar para home</a>
</div>
<!--Esta parte torna acessível para deficientes auditivos-->
<div vw class="enabled">
<div vw-access-button class="active"></div>
<div vw-plugin-wrapper>
<div class="vw-plugin-top-wrapper"></div>
</div>
</div>
<script src="https://vlibras.gov.br/app/vlibras-plugin.js"></script>
<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>
</main>
</body>
</html>