-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (70 loc) · 2.94 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="img/favicon-world.ico" type="image/x-icon">
<title>Registro dos países</title>
</head>
<body id="bodyForm">
<header>
<h1>Países</h1>
</header>
<main>
<form class="form-paises">
<fieldset class="form-paises__group">
<legend>Informações do País</legend>
<label for="nome">Nome</label>
<input type="text" class="form-paises__input form-paises--focus" id="nome" placeholder="Informe o nome do país" required>
<label for="continente">Continente</label>
<select id="continente" class="form-paises__select form-paises--focus">
<option disabled selected value="">Selecione um continente</option>
</select>
</fieldset>
<input type="button" value="Inserir" id="btn" class="form-paises__button">
</form>
<section id="sectionTabela" class="section-table-paises hidden">
<h2>Registro dos Países</h2>
<select class="table-paises__filtro" id="filtroContinentes">
<option selected value="">Selecione um continente</option>
</select>
<table id="tabelaPrincipal" class="table-paises">
<thead class="table-paises__head">
<tr>
<th>ID</th>
<th>
<div class="table-paises__icon-group">
<img src="img/flag.svg" alt="icon-flag">
País
</div>
</th>
<th>
<div class="table-paises__icon-group">
<img src="img/world.svg" alt="icon-world">
Continente
</div>
</th>
</tr>
</thead>
<tbody id="tabela" class="table-paises__body">
</tbody>
</table>
<nav id="nav" class="paginacao-paises">
<a id="pag-anterior" class="paginacao-paises__nav hidden" href="#">
<img src="img/arrow-left.svg" alt="">
Anterior
</a>
<a id="pag-proximo" class="paginacao-paises__nav hidden" href="#">
Próximo
<img src="img/arrow-right.svg" alt="">
</a>
</nav>
</section>
</main>
<footer>
<p class="footer__text">Coded by <a class="footer__link" href="https://github.com/rachelpizane" target="_blank">Rachel Pizane</a>.</p>
</footer>
<script src="script.js"></script>
</body>
</html>