-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (98 loc) · 4.23 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
98
<!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
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Raleway:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<link rel="stylesheet" href="style.css" />
<title>PokeApp</title>
</head>
<body>
<div class="bg"></div>
<div class="btn_generation">
<button class="btn btn_generation_search" value="1">i</button>
<button class="btn btn_generation_search" value="2">ii</button>
<button class="btn btn_generation_search" value="3">iii</button>
<button class="btn btn_generation_search" value="4">iv</button>
<button class="btn btn_generation_search" value="5">v</button>
<button class="btn btn_generation_search" value="6">vi</button>
<button class="btn btn_generation_search" value="7">vii</button>
<button class="btn btn_generation_search" value="8">viii</button>
<button class="btn btn_generation_search" value="9">ix</button>
</div>
<div class="btn_type">
<button class="btn btn_type_search" value="bug">
<img src="images/pokemon-types/bug.ico" alt="bug type" />
</button>
<button class="btn btn_type_search" value="dragon">
<img src="images/pokemon-types/dragon.ico" alt="fragon type" />
</button>
<button class="btn btn_type_search" value="electric">
<img src="images/pokemon-types/electric.ico" alt="electric type" />
</button>
<button class="btn btn_type_search" value="fairy">
<img src="images/pokemon-types/fairy.ico" alt="fairy type" />
</button>
<button class="btn btn_type_search" value="fighting">
<img src="images/pokemon-types/fighting.ico" alt="fighting type" />
</button>
<button class="btn btn_type_search" value="fire">
<img src="images/pokemon-types/fire.ico" alt="fire type" />
</button>
<button class="btn btn_type_search" value="flying">
<img src="images/pokemon-types/flying.ico" alt="flying type" />
</button>
<button class="btn btn_type_search" value="grass">
<img src="images/pokemon-types/grass.ico" alt="grass type" />
</button>
<button class="btn btn_type_search" value="ground">
<img src="images/pokemon-types/ground.ico" alt="ground type" />
</button>
<button class="btn btn_type_search" value="ghost">
<img src="images/pokemon-types/ghost.ico" alt="ghost type" />
</button>
<button class="btn btn_type_search" value="ice">
<img src="images/pokemon-types/ice.ico" alt="ice type" />
</button>
<button class="btn btn_type_search" value="normal">
<img src="images/pokemon-types/normal.ico" alt="normal type" />
</button>
<button class="btn btn_type_search" value="poison">
<img src="images/pokemon-types/poison.ico" alt="poison type" />
</button>
<button class="btn btn_type_search" value="psychic">
<img src="images/pokemon-types/psychic.ico" alt="psychic type" />
</button>
<button class="btn btn_type_search" value="rock">
<img src="images/pokemon-types/rock.ico" alt="rock type" />
</button>
<button class="btn btn_type_search" value="steel">
<img src="images/pokemon-types/steel.ico" alt="steel type" />
</button>
<button class="btn btn_type_search" value="water">
<img src="images/pokemon-types/water.ico" alt="water type" />
</button>
</div>
<div class="searchByName">
<label for="search"></label>
<input type="search" id="search" placeholder="Search by name..." />
</div>
<div class="pokeCards"></div>
<button id="backToTop" class="btn primary">
<span class="material-symbols-outlined"> arrow_upward </span>
</button>
<script src="main.js"></script>
</body>
</html>