-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.79 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
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agenda Contatos</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sometype+Mono:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./main.css">
</head>
<body>
<div class="container">
<header>
<img src="./images/usuarios.png" alt="usuário logo">
<h1>Agenda de Contatos</h1>
</header>
<form id="formulario">
<input type="text" id="primeiro-nome" required placeholder="Digite o Nome"/>
<input type="text" id="segundo-nome" required placeholder="Digite o Sobrenome" />
<input type="number" id="numero-telefone" required placeholder="Digite o número" />
<button type="submit">Adicionar+</button>
<button type="reset">Limpar</button>
</form>
<table cellspacing="0" id="tabela">
<thead>
<tr>
<th>
<h2>Nome</h2>
</th>
<th>
<h2>Sobrenome</h2>
</th>
<th>
<h2>Telefone</h2>
</th>
</tr>
</thead>
<tbody>
<tr>
</tbody>
</table>
<footer>
<h4>© Sumioshi - Todos os direitos Reservados - 2023</h4>
<h4>Este site é um exercicio da EBAC</h4>
<button onclick="pressionaReset()">Limpar <span>TODOS</span> os contatos</button>
</footer>
</div>
<script src="./main.js"></script>
</body>
</html>