-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 1.5 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
<!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">
<link rel="icon" type="image/x-icon" href="/favicons/pokebola.png" />
<link rel="stylesheet" href="css/style.css">
<title>Pokédex</title>
</head>
<body>
<header>
<h1>Pokédex</h1>
<ul class="list-style">
<li class="github">
<a target="_blank" href="https://github.com/helciosp">by helciosp</a>
</li>
<li>
<button type="button" id="template" class="button">Light</button>
</li>
</ul>
</header>
<main id="main" class="text-center">
<div id="div-form-pesquisa">
<form id="form-pesquisa" class="flex-wrap">
<div class="text-center">
<label for="input-pesquisa">Nome ou Número:</label>
<input id="input-pesquisa" type="text" />
<button id="pesquisar" class="button dark" type="button">Pesquisar</button>
</div>
</form>
</div>
<div id="pokedex">
<div id="pokedex-div" class="flex-wrap"></div>
<button type="button" id="load" class="button dark">Carregar mais Pokémon</button>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="./js/script.js"></script>
</body>
</html>