-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (61 loc) · 2.38 KB
/
Copy pathindex.html
File metadata and controls
63 lines (61 loc) · 2.38 KB
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
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Pidgey Crush</title>
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
<script src="js/jquery-2.1.4.min.js" type="text/javascript"></script>
<script src="js/jquery-ui.min.js" type="text/javascript"></script>
<script src="js/jquery.ui.autocomplete.html.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="components/css/jquery-ui.min.css">
<link rel="stylesheet" type="text/css" href="components/css/jquery-ui.structure.min.css">
<link rel="stylesheet" type="text/css" href="components/css/jquery-ui.theme.min.css">
<script src="js/pokemon.js" type="text/javascript"></script>
<script src="js/script.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="wrapper">
<form method="post">
<div class="widget__wrapper">
<div class="ui-widget">
<label for="pokemonSelect">Pokémon: </label>
<input id="pokemonSelect" name="pokemonSelect" placeholder="Start typing Pokémon species">
<ul id="pokemonFields" class="pokemon-avatar__wrapper">
<!--Pokémon Avatars spawn here-->
</ul>
</div>
</div>
<div class="buttons">
<a id="resetPokemonSelect" href="javascript:void(0)" onclick="resetForm();">Reset Selection</a>
</div>
</form>
<table id="finalDestination" class="final-destination">
<thead>
<tr>
<td>#</td>
<td class="species">Species</td>
<td class="candyNeeded">Candy Needed</td>
<td class="candyInventory">Candy Inventory</td>
<td class="Bonus"># Evolutions possible</td>
<td class="Bonus">New Species Evolution</td>
<td class="TotalXP">Total XP Gained</td>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
<td>#</td>
<td>Evolutions</td>
<td>XP gained</td>
<td>XP gained with lucky egg</td>
</tfoot>
</table>
</div>
<!-- <p>
You can evolve <span class="pokeNumber">0</span> <span class="pokemon">Pokémon</span> for a total of <span class="xp">0xp</span>.
</p> -->
</form>
</div>
</body>
</html>