forked from acmucsd/hackschool-fa20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewPokemonn.html
33 lines (33 loc) · 1.29 KB
/
viewPokemonn.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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<title> Pokemon Generator </title>
<link rel="stylesheet" href="styles.css" type="test/css">
</head>
<body>
<div class="navbar">
<div class="title">
<h1>Pokemon Generator</h1>
</div>
<div class="nav-buttons">
<a href="/createPokemon.html">Create New Pokemon</a>
<a href="/viewPokemon.htm">View All Pokemon</a>
</div>
</div>
<br>
<div class="pokemon">
<h2>Ditto</h2>
<img src="https://media2.giphy.com/media/hSXsjuZLQz6aKprQXy/source.gif" width="500"/>
<p> Ditto copies a pokemon because its own stats are not the best </p>
<br>
<h2>Amaura</h2>
<img src="https://64.media.tumblr.com/c9fe05632c20e562f8f7ef28c43bb684/tumblr_n7ux7mdLJS1rz1ztlo1_500.gifv" width="500"/>
<p> Amaura is a white dinosaur that loves the snow </p>
<br>
<h2>Charmandar</h2>
<img src="https://media.tenor.com/images/00da74900f997766baa04acac06ed5b6/tenor.gif" width="500"/>
<p> Charmander has a tail that if extinguished, he will not have a fun time </p>
</div>
</body>
</html>