Skip to content

Instantly share code, notes, and snippets.

@RandomInternetDude
Created November 12, 2017 03:02
Show Gist options
  • Save RandomInternetDude/a7cb281c952a1a8ca607fcc169aebd60 to your computer and use it in GitHub Desktop.
Save RandomInternetDude/a7cb281c952a1a8ca607fcc169aebd60 to your computer and use it in GitHub Desktop.
Pokemon Data Excercise
<!DOCTYPE html>
<html>
<head>
<title>Pokermon chart</title>
</head>
<body>
<h1>First Generation Pokemon Chart!</h1>
<table border="1">
<thead>
<tr>
<th>Image</th>
<th>Name</th>
<th>Type</th>
<th>Evolves into</th>
</thead>
<tbody>
<tr>
<td><img src="http://img4.wikia.nocookie.net/__cb20140328190757/pokemon/images/thumb/2/21/001Bulbasaur.png/200px-001Bulbasaur.png"></td>
<td>Bulbasaur</td>
<td>Grass/Poison</td>
<td> <a href="http://pokemon.wikia.com/wiki/Ivysaur"> Ivysaur</a>
</td>
</tr>
<tr>
<td><img src="http://img4.wikia.nocookie.net/__cb20140724195345/pokemon/images/thumb/7/73/004Charmander.png/200px-004Charmander.png"></td>
<td>Charmander</td>
<td>Fire</td>
<td>
<a href="http://pokemon.wikia.com/wiki/Charmeleon">Charmeleon</a> </td>
</tr>
<tr>
<td><img src="http://img1.wikia.nocookie.net/__cb20140328191525/pokemon/images/thumb/3/39/007Squirtle.png/200px-007Squirtle.png "></td>
<td>Squirtle</td>
<td>Water</td>
<td><a href="http://pokemon.wikia.com/wiki/Wartortle">Wartotle</a></td>
</tr>
</tbody>
</table>
</body>
</html>
<!--
Name
Bulbasaur
Image
http://img4.wikia.nocookie.net/__cb20140328190757/pokemon/images/thumb/2/21/001Bulbasaur.png/200px-001Bulbasaur.png
Type
Grass/Poison
Evolves To
ivysaur
http://pokemon.wikia.com/wiki/Ivysaur
Name
Charmander
Image
http://img4.wikia.nocookie.net/__cb20140724195345/pokemon/images/thumb/7/73/004Charmander.png/200px-004Charmander.png
Type
Fire
Evolves To
Charmeleon
http://pokemon.wikia.com/wiki/Charmeleon
Name
Squirtle
Image
http://img1.wikia.nocookie.net/__cb20140328191525/pokemon/images/thumb/3/39/007Squirtle.png/200px-007Squirtle.png
Type
Water
Evolves To
Wartortle
http://pokemon.wikia.com/wiki/Wartortle
-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment