write-ups-challenges-2020-2021/gotta_catch_em_all/frontend/index.html

23 lines
481 B
HTML
Raw Normal View History

2022-11-24 17:03:20 +00:00
<!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>