-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewPokemon.html
41 lines (41 loc) · 1.78 KB
/
viewPokemon.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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pokemon Generator</title>
<link rel="stylesheet" href="styles.css" type="text/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.html">View All Pokemon</a>
</div>
</div>
<br>
<div class="pokemon">
<h2>Torchic</h2>
<img src="https://i.pinimg.com/originals/03/94/dc/0394dc888f790a94f316f6ca7132a60d.gif" width="500"/>
<p>Torchic sticks with its Trainer, following behind with
unsteady steps. This Pokémon breathes fire of over 1,800
degrees Fahrenheit, including fireballs that leave the
foe scorched black.</p>
<br />
<h2>Mudkip</h2>
<img src="https://media1.tenor.com/images/43f33b5dadadac5aa92cf2367818d906/tenor.gif?itemid=10506984" width="500"/>
<p>The fin on Mudkip’s head acts as highly sensitive radar.
Using this fin to sense movements of water and air,
this Pokémon can determine what is taking place around
it without using its eyes.</p>
<br />
<h2>Treecko</h2>
<img src="https://media1.tenor.com/images/ac8059ebda75f12f5df142d05f591418/tenor.gif?itemid=5483105" width="500"/>
<p>Treecko has small hooks on the bottom of its feet that enable
it to scale vertical walls. This Pokémon attacks by slamming
foes with its thick tail.</p>
</div>
</body>
</html>