-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (35 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="pokemon,nitendo,game">
<meta name="author" content="paulocesargit">
<link rel="icon" href="./favicon/icon.png.png">
<link rel="stylesheet" href="./css/style.css">
<script defer src="./js/script.js"></script>
<title>Pokedex</title>
</head>
<body>
<main>
<img src="" alt="pokemon" class="pokemonImage">
<h1 class="pokemonData">
<span class="pokemonNumber"></span> -
<span class="pokemonName"></span>
</h1>
<form class="form">
<input
type="search"
class="inputSearch"
placeholder="Name or Number"
required
/>
</form>
<div class="buttons">
<button class="button btnPrev">Previous < </button>
<button class="button btnNext">Next > </button>
</div>
<img src="assets/pokedex.png" alt="pokedex" class="pokedex">
</main>
</body>
</html>