-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
34 lines (26 loc) · 937 Bytes
/
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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="contato.css">
<title>Contato</title>
</head>
<body>
<form action="" autocomplete="off">
<fieldset>
<legend> Formulario de contato </legend>
<label for="name">Nome</label>
<input type="text" id="name" name="name" required placeholder="Digite seu nome completo">
<label for="email">E-mail</label>
<input type="email" name="email" id="email" required placeholder="Digite seu E-mail">
<label for="subject">Assunto</label>
<input type="text" id="subject" name="subject">
<label for="message">Mensagem</label>
<textarea name="message" id="message" rows="7" required maxlength="1000" minlength="20" placeholder="Digite seu comentario">
</textarea>
<button input type="submit" class="btn"> Enviar </button>
</fieldset>
</form>
</body>
</html>