-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 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
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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/styles.css">
<!-- main js -->
<script defer src="./js/script.js"></script>
<title>Pokedex LeoSluga</title>
</head>
<body>
<main>
<img src="./images/cachaça1.png" alt="pokemon" class="pokemon_image">
<h1 class="pokemon_data">
<span class="pokemon_number">6</span> -
<span class="pokemon_name">Wild Cachaça</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" alt="pokedex" class="pokedex">
</main>
</body>
</html>