-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.11 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
<!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 -->
<link rel="icon" href="favicons/favicon-16x16.png">
<link rel="stylesheet" href="css/style.css">
<!-- Main JS -->
<script defer src="./js/script.js"></script>
<title>Pokedex</title>
</head>
<body>
<main>
<img src="#" 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">Prev <</button>
<button class="button btn-next">Next ></button>
</div>
<img src="imagens/pokedex.png" alt="pokedex" class="pokedex">
</main>
</body>
</html>