-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (38 loc) · 1.24 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
<!DOCTYPE html>
<html lang="pt-br">
<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>Gerenciamento de Dados</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="container">
<h1 class="title">Gerenciamento de Dados</h1>
<form class="form">
<input type="text"
placeholder="Nome..."
class="name"
required>
<input type="number"
placeholder="Idade..."
class="idade"
required>
<input type="number"
placeholder="Cpf..."
class="cpf"
required>
<select id="sexo">
<option disabled selected>Gênero</option>
<option value="Masculino">Masculino</option>
<option value="Feminino">Feminino</option>
</select>
<button type="button" onclick="Salvar()">Salvar</button>
<button type="button" onclick="RemoveAll()">Excluir Tudo</button>
</form>
<div class="dados"></div>
</section>
<script src="js/App.js"></script>
</body>
</html>