-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformulario.html
More file actions
43 lines (30 loc) · 1.11 KB
/
formulario.html
File metadata and controls
43 lines (30 loc) · 1.11 KB
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
<html>
<head>
<meta charset="UTF-8">
<title>Formulario</title>
<link rel="stylesheet" href="formulario.css">
</head>
<body>
<div class = "caixa">
<h1>Contato</h1>
<main>
<form>
<label for="nomesobrenome">Nome e Sobrenome</label><br>
<input type="text"id="nomesobrenome" placeholder="Nome e sobrenome"><br>
<label for="email">Email</label><br>
<input type="text" id="email" placeholder="Email"><br>
<label for="telefone">Telefone</label><br>
<input type="text"id="telefone" placeholder="Telefone"><br>
<label for="mensagem">Mensagem</label><br>
<textarea cols="24.5" rows="10" id="mensagem"></textarea><br><br>
<label for="radio-email">Email</label>
<input type="radio" name="contato" value="email" id="radio-email">
<label for="radio-telefone">Telefone</label>
<input type="radio" name="contato" value="telefone" id="radio-telefone">
<label for="radio-whatsapp">Whatsapp</label>
<input type="radio" name="contato" value="whatsapp" id="radio-whatsapp"><br><br>
<input type="submit" value="Enviar Formulario">
</form>
</main>
</body>
</html>