-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (93 loc) · 3.22 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!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" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="img/x-icon" href="icon.ico" />
<link rel="shortcut icon" href="/icon.ico" />
<link rel="apple-touch-icon" href="/icon.ico" />
<link rel="apple-touch-icon" sizes="128x128" href="icon.ico" />
<title>PokèFilter</title>
</head>
<body>
<div class="app">
<header>
<div class="logo"><a href="index.html">PokèFilter</a></div>
<div class="credits">
Dev with
<a href="https://pokeapi.co/"> <img src="./img/pika.webp" /> </a> by
<a
class="underline-name"
href="https://www.linkedin.com/in/michaeltorresdeveloper/"
>
Michael
</a>
</div>
<ul class="types">
<a href="#">
<img href="#" id="fire" src="img/icons/fire.svg" />
</a>
<a href="#">
<img href="#" id="water" src="img/icons/water.svg" />
</a>
<a href="#">
<img href="#" id="normal" src="img/icons/normal.svg" />
</a>
<a href="#">
<img href="#" id="grass" src="img/icons/grass.svg" />
</a>
<a href="#">
<img href="#" id="flying" src="img/icons/flying.svg" />
</a>
<a href="#">
<img href="#" id="fighting" src="img/icons/fighting.svg" />
</a>
<a href="#">
<img href="#" id="poison" src="img/icons/poison.svg" />
</a>
<a href="#">
<img href="#" id="electric" src="img/icons/electric.svg" />
</a>
<a href="#">
<img href="#" id="ground" src="img/icons/ground.svg" />
</a>
<a href="#"><img href="#" id="rock" src="img/icons/rock.svg" />
</a>
<a href="#"><img href="#" id="psychic" src="img/icons/psychic.svg" />
</a>
<a href="#"><img href="#" id="ice" src="img/icons/ice.svg" />
</a>
<a href="#"><img href="#" id="bug" src="img/icons/bug.svg" />
</a>
<a href="#"><img href="#" id="ghost" src="img/icons/ghost.svg" />
</a>
<a href="#"><img href="#" id="steel" src="img/icons/steel.svg" />
</a>
<a href="#"><img href="#" id="dragon" src="img/icons/dragon.svg" />
</a>
<a href="#"><img href="#" id="dark" src="img/icons/dark.svg" />
</a>
<a href="#"><img href="#" id="fairy" src="img/icons/fairy.svg" />
</a>
</ul>
<div class="search">
<input
id="pokemon-input-name"
placeholder="Catch'em All.."
type="search"
/>
<button>🔎</button>
</div>
<div class="dark-mode-button">
<button>🌙</button>
</div>
</header>
<main>
<div class="cards"></div>
</main>
</div>
<script src="app.js"></script>
</body>
</html>