-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (29 loc) · 1.31 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Wesley Victor Pereira Silva" />
<meta name="description" content="Página de formulário de contato em HTML." />
<meta name="keywords" content="Formulário de contato, HTML, web development" />
<title>Formulário de contato</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<form action="#" method="post" autocomplete="off">
<fieldset>
<legend>Formulário de contato</legend>
<label for="name">Nome</label>
<input type="text" name="name" id="name" required placeholder="Digite seu nome completo" />
<label for="email">E-mail</label>
<input type="email" name="email" id="email" required placeholder="Digite um e-mail válido" />
<label for="subject">Assunto</label>
<input type="text" name="subject" id="subject" />
<label for="message">Mensagem</label>
<textarea name="message" id="message" rows="7" required maxlength="1000" minlength="20"
placeholder="Conte-nos tudo"></textarea>
<button type="submit" class="btn">Enviar</button>
</fieldset>
</form>
</body>
</html>