23 lines
481 B
HTML
23 lines
481 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<script src="index.js"></script>
|
||
|
<link rel="stylesheet" href="styles.css" />
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Pokédex</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<form>
|
||
|
<label for="pokeselect">Add captured Pokémon</label>
|
||
|
<select id="pokeselect" onchange="catchPokemon()">
|
||
|
<option>Select your Pokémon</option>
|
||
|
</select>
|
||
|
</form>
|
||
|
|
||
|
<h1 id="pokedexTitle">Kanto Pokédex</h1>
|
||
|
<table id="capturedPokemon">
|
||
|
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|