-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (48 loc) · 1.8 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
55
56
57
<!DOCTYPE html>
<html lang="pt-br">
<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">
<meta name="theme-color" content="#C6182F">
<link rel="apple-touch-icon" href="./AppImages/ios/192.png">
<link rel="manifest" href="/manifest.json">
<link rel="canonical" href="https://tonyrodiv.github.io/Pokedex/">
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" href="./favicons/pokeball.png" type="image/x-icon">
<title>Pokédex</title>
</head>
<body>
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
</script>
<main>
<img src="#" alt="pokemon" class="pokeImg">
<h1 class="pokeData">
<span class="pokeNum"></span> -
<span class="pokeName"></span>
</h1>
<form class="pokeForm">
<input type="search" class="inputSearch" placeholder="Name or Number" required>
</form>
<div class="buttons">
<buton class="button btnPrev">< Prev</buton>
<!-- <button class="button btnShiny">Shiny</button> -->
<label class="switch">
<input type="checkbox" id="shinyChange">
<div class="button btnShiny">
Shiny
</div>
</label>
<buton class="button btnNext">Next ></buton>
</div>
<img src="./img/pokedex.png" class="pokedex" alt="" srcset="">
</main>
<a href="https://github.com/TonyRodIv/Pokedex">
<p>@TonyRodIv on GitHub</p>
</a>
<script src="./js/script.js"></script>
</body>
</html>