-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUntitled-1.html
48 lines (43 loc) · 1.35 KB
/
Untitled-1.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>formulario</title>
<link rel="stylesheet" href="formatacao.css">
</head>
<body>
<p>
<form id="formular" name="formulario" method="" action="">
<div></div>
<br><label for="pri_nome">Nome e Sobrenome:</label></br>
<input type="pri_nome" id="nome" name="nome_usuario">
</div>
<div>
<br> <label for="telefone">Telefone:</label></br>
<input type="telefone" id="telefone" name="telefone_usuario">
</div>
<div>
<br> <label for="email">E-mail:</label></br>
<input type="email" id="email" name="email_usuario">
</div>
<div>
<br><label for="mensagem">Mensagem</label></br>
<textarea cols="70" rows="10" id="mensagem"
<div>
<label for="radio-telefone">Telefone</label>
<input type="radio" value+"email" id="radio-telefone">
</div>
<div>
<label for="radio-email">Email</label>
<input type="radio" value+"email" id="radio-email">
</div>
<div>
<label for="radio-whatsapp">Whatsapp</label>
<input type="radio" value+"email" id="radio-whatsapp">
</div>
<br><button type="enviar" onclick="validacao()">Enviar</button>
<button type="reset">Resetar</button></br>
</p>
</form>
</body>
</html>