-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatividade.html
47 lines (45 loc) · 1.74 KB
/
atividade.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Atividade</title>
<link rel="stylesheet" href="atividade.css">
</head>
<body>
<main>
<h1 id="titulo">Teste</h1>
<div id="caixa">
<form>
<fieldset class="bordas">
<div class="campo">
<label for="nome">Nome</label>
<input type="text" nome="nome" id="nome1" required>
</div>
<div class="campo">
<label for="nome2">Sobrenome</label>
<input type="text" nome="sobrenome" id="nome2" required>
</div>
<div class="campo">
<label for="nome3">Data de nascimento</label>
<input type="text" nome="data-nascimento" id="nome3" required>
</div>
<div class="campo">
<label for="nome4">Indereço de email</label>
<input type="text" email="email" id="nome4" required>
</div>
<div class="campo">
<label for="nome5">Número de telefone</label>
<input type="text" nome="telefone" id="nome5" required>
</div>
</fieldset>
<div id="botoes">
<button class="botao" type="submit" onsubmit="">Concluido</button>
<button class="botao" type="submit" onsubmit="">Recomeçar</button>
</div>
</form>
</div>
</main>
</body>
</html>