-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (34 loc) · 1.35 KB
/
index.html
File metadata and controls
44 lines (34 loc) · 1.35 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
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulario</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Olá, seja bem vindo(a)</h1>
<h6>gostaria de te conhecer melhor, por favor fale um pouco sobre você!</h6>
</header>
<form
action="https://formspree.io/f/xrbyqeeg" method="POST" autocomplete="off" >
<label for="Nome">Como se chama?</label>
<input type="text" name="nome" id="Nome" placeholder="Seu nome" required>
<label for="email">Qual seu email?</label>
<input type="email" name="email" id="email" placeholder="Email@gmail.com" required>
<label for="senha">Qual sua senha?</label>
<input type="password" name="senha" id="senha" required placeholder="Senha">
<label for="idade">Quantos anos você tem?</label>
<input type="number" name="idade" id="idade" required placeholder="Idade">
<label for="mes">Em que mês estamos?</label>
<input type="month" name="mes" id="mes" required>
<label for="semana">Em que semana estamos?</label>
<input type="week" name="semana" id="semana" required>
<label for="nascimento">Quando você nasceu?</label>
<input type="date" name="nascimento" id="nascimento" required>
<br>
<button type="submit">Enviar</button>
</form>
</body>
</html>