-
Notifications
You must be signed in to change notification settings - Fork 1
/
move_search.html
68 lines (64 loc) · 2.25 KB
/
move_search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./css/move_search.css" />
<link rel="stylesheet" href="./css/navbar.css" />
<link href="https://fonts.googleapis.com/css?family=Bangers|Boogaloo&display=swap" rel="stylesheet">
<title>Full Pokedex</title>
</head>
<body>
<div id="navbar">
<div class="nav-logo">
<img src="resources/Pokedex.png" alt="Pokedex"/>
</div>
<div class="navbar-buttons">
<div class="nav-button">
<a href="index.html">Pokemon</a>
</div>
<div class="nav-button" id="currentPage">
<a href="move_search.html">Moves</a>
</div>
<div class="nav-button">
<a href="region.html">Regions</a>
</div>
<div class="nav-button">
<a href="battle.html">Battle</a>
</div>
</div>
</div>
<div class="search-body">
<select id="categories">
<option id="c_name" value="name">Moves name</option>
<option id="c_name" value="ailment">Ailment</option>
<option id="c_name" value="damage_type"
>Type( Physical, Special or Status)</option
>
</select>
<label for="Search" class="visually-hidden"></label>
<input id="input" type="text" placeholder="Search.." name="Search" />
<button onclick="search()">Go!</button>
<div id="move_display"></div>
</div>
<script src="https://unpkg.com/pokeapi-js-wrapper/dist/index.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="./js/move_search.js"></script>
<!--<script
src="https://unpkg.com/react@16/umd/react.development.js"
crossorigin
></script>
<script
src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"
crossorigin
></script>
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"
></script>-->
<!-- Load our React component. -->
<!--<script src="pokedex_react.js"></script>-->
</body>
</html>