-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.04 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">6</span> -
<span class="pokemon_name">charizard</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="./images/pokedex.png" class="pokedex" alt="pokedex">
</main>
</body>
</html>