Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions bulbasaur.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>bulbasaur</title>
</head>
<h1>Bulbasaur</h1>
<body>
<p>
Bulbasaur is a Grass/Poison type Pokémon introduced in Generation 1. It is known as the Seed Pokémon.
</p>

<a href="grass.html" target="blank">Types of Pokemon</a>

</body>
</html>
15 changes: 15 additions & 0 deletions charmander.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Charmander</title>
</head>
<h1>Charmander</h1>
<body>
<p>
Charmander is a Fire type Pokémon introduced in Generation 1. It is known as the Lizard Pokémon.
</p>
<a href="fire.html" target="blank">Types of Pokemon</a>


</body>
</html>
15 changes: 15 additions & 0 deletions charmeleon.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Charmeleon</title>
</head>
<h1>Charmeleon</h1>
<body>
<p>
Charmeleon is a Fire type Pokémon introduced in Generation 1. It is known as the Flame Pokémon.
</p>
<a href="fire.html" target="blank">Types of Pokemon</a>


</body>
</html>
20 changes: 20 additions & 0 deletions fire.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Type of Pokemon</title>
</head>
<h2>FIRE Type</h2>
<body>
<p>
Fire is one of the three basic elemental types along with Water and Grass, which constitute the three starter Pokémon. This creates a simple triangle to explain the type concept easily to new players. Fire types are notoriously rare in the early stages of the games so choosing the Fire variation starter is often a plus.

</p>


<ul>
<li><a href="charmeleon.html" target="blank">Charmeleon</li>
<li><a href="charmander.html" target="blank">Charmander</li>
</ul>

</body>
</html>
20 changes: 20 additions & 0 deletions grass.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Type of Pokemon</title>
</head>
<h2>Grass Type</h2>
<body>
<p>
Grass is one of the three basic elemental types along with Fire and Water, which constitute the three starter Pokémon. This creates a simple triangle to explain the type concept easily to new players.

Grass is one of the weakest types statistically, with 5 defensive weaknesses and 7 types that are resistant to Grass moves. Furthermore, many Grass Pokémon have Poison as their secondary type, adding a Psychic vulnerability. The type combination with the most weaknesses is Grass/Psychic.
</p>

<ul>
<li><a href="bulbasaur.html" target="blank">Bulbasaur</li>
<li><a href="ivysaur.html" target="blank">Ivysaur</li>
</ul>

</body>
</html>
29 changes: 29 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>Pokedex</title>
</head>
<h1>Pokedex</h1>
<body>
<h3>List of pokemon</h3>
<ul>
<li><a href="bulbasaur.html" target="blank">Bulbasaur</a></li>
<li><a href="ivysaur.html" target="blank">Ivysaur</li>
<li><a href="charmander.html" target="blank">Charmander</li>
<li><a href="charmeleon.html" target="blank">Charmeleon</li>
</ul>













</body>
</html>
16 changes: 16 additions & 0 deletions ivysaur.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>Ivysaur</title>
</head>
<h1>Ivysaur</h1>
<body>

<p>
Ivysaur is a Grass/Poison type Pokémon introduced in Generation 1. It is known as the Seed Pokémon.
</p>
<a href="grass.html" target="blank">Types of Pokemon</a>


</body>
</html>