-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (29 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>FORMULÁRIO</title>
</head>
<body>
<form>
<div class="Formulário">
<label for="nome">Nome</label>
<input typ="text" id="nome" class="input-padrao" required>
<label for="sobrenome">Sobrenome</label>
<input type="text" id="sobrenome" class="input-padrao" required>
<label for="email">E-mail</label>
<input type="email" id="email" class="input-padrao" required placeholder="seuemail@dominio.com">
<label for="Telefone">Telefone</label>
<input type="tel" id="Telefone" class="input-padrao" required placeholder="(XX)XXXXX-XXXX">
<label for="mensagem">Mensagem</label>
<textarea cols="70" rows="10" id="mensagem" class="input-padrao"></textarea></textarea>
<fieldset>
<legend> Como prefere o nosso contato? </legend>
</fieldset>
<input type="submit" value="Enviar Formulário">
</div>
</form>
</body>
</html>