-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (39 loc) · 1.27 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
<!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">
<!-- links -->
<!-- icone pokebola no comeco da pagina -->
<link rel="icon" href="./img/pokebola.webp">
<link rel="stylesheet" href="./css/style.css">
<!-- main js -->
<script defer src="./js/script.js"></script>
<title>Pokédex</title>
</head>
<body>
<main>
<!-- imagem pokemon -->
<img scr="#" alt="pokemon" class="pokemon__image">
<h1 class="pokemon__data">
<span class="pokemon__number"></span> -
<span class="pokemon__name"></span>
</h1>
<form class="form">
<input
type="search"
class="input__search"
placeholder="Name or Number"
required
/>
</form>
<div class="buttons">
<button class="button btn-prev">Anterior < </button>
<button class="button btn-next">> próximo </button>
</div>
<!-- pokedex -->
<img src="./img/pokedexm.png" alt="pokedex" class="pokedex">
</main>
</body>
</html>