-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (103 loc) · 2.52 KB
/
index.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Pokemon Store</title>
<link href="index.css" rel="stylesheet" />
</head>
<body>
<header>
<h1>The Doctor Pokemon Store</h1>
<h2>The Doctor Most recent POPS for sale</h2>
<nav>
<ul>
<li><a href="./">Home</a></li>
<li><a href="./store.html">Store</a></li>
<li><a href="./cart.html">Cart</a></li>
</ul>
</nav>
<img
alt="pokemons image"
src="pokemons.webp"
title="Pokemon World"
width="600"
/>
</header>
<hr />
<main>
<section>
<p>
In my journey to become a pokemon master iv already catch the
following pokemons
</p>
<p>
There are almost 1000
<a href="https://www.pokemon.com/us/pokedex" target="_blank"
>Pokemons</a
>
out there...
</p>
<p>You can see my Pops at my <a href="store.html">Store</a></p>
<hr />
</section>
<article>
<h3>Pokemons that <em>I already catch</em></h3>
<table>
<thead>
<tr>
<th>Number</th>
<th>Name</th>
<th>Lvl.</th>
</tr>
</thead>
<tbody>
<tr>
<td>150</td>
<td>Mew Two</td>
<td>99</td>
</tr>
<tr>
<td>151</td>
<td>Mew</td>
<td>82</td>
</tr>
<tr>
<td>025</td>
<td>Pikachu</td>
<td>32</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="100%">
Thats all the pokemons i have
<label>
<textarea placeholder="enter here"></textarea>
</label>
</td>
</tr>
</tfoot>
</table>
</article>
<article>
<h3>Pokemons <em>I wish to catch</em></h3>
<ol>
<li>Charizard</li>
<li>Mew Two</li>
<li>Pikachu</li>
<li>Mew</li>
</ol>
</article>
<hr />
<article>
<h3>Here is the code you can run to catch all pokemons</h3>
<code>
<h3>Here is the code you can run to catch all
pokemons</h3>
</code>
</article>
</main>
<hr />
<footer>This site was built by ©Doctor Code</footer>
</body>
</html>