-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (130 loc) · 4.97 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokemon List</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<h1><a href="./">Pokemon List</a></h1>
</nav>
<main>
<div id="card-wrapper">
<a class="card" href="./pokemon/1.html">
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/1.png" alt="bulbasaur">
<div class="info-wrapper">
<h2>bulbasaur</h2>
<p>height: 7 dm</p>
<p>weight: 69 hg</p>
<p>types: grass, poison</p>
</div>
</a>
<a class="card" href="./pokemon/2.html">
<div class="img-wrapper">
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/2.png" alt="ivysaur">
</div>
<div class="info-wrapper">
<h2>ivysaur</h2>
<p>height: 10 dm</p>
<p>weight: 130 hg</p>
<p>types: grass, poison</p>
</div>
</a>
<a class="card" href="./pokemon/3.html">
<div class="img-wrapper">
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/3.png" alt="venusaur">
</div>
<div class="info-wrapper">
<h2>venusaur</h2>
<p>height: 10 dm</p>
<p>weight: 130 hg</p>
<p>types: grass, poison</p>
</div>
</a>
<a class="card" href="./pokemon/4.html">
<div class="img-wrapper">
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/4.png" alt="charmander">
</div>
<div class="info-wrapper">
<h2>charmander</h2>
<p>height: 7 dm</p>
<p>weight: 69 hg</p>
<p>types: grass, poison</p>
</div>
</a>
<a class="card" href="./pokemon/5.html">
<div class="img-wrapper">
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/5.png" alt="charmeleon">
</div>
<div class="info-wrapper">
<h2>charmeleon</h2>
<p>height: 7 dm</p>
<p>weight: 69 hg</p>
<p>types: grass, poison</p>
</div>
</a>
<a class="card" href="./pokemon/6.html">
<div class="img-wrapper">
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/6.png" alt="charizard">
</div>
<div class="info-wrapper">
<h2>charizard</h2>
<p>height: 7 dm</p>
<p>weight: 69 hg</p>
<p>types: grass, poison</p>
</div>
</a>
<a class="card" href="./pokemon/7.html">
<div class="img-wrapper">
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/7.png" alt="squirtle">
</div>
<div class="info-wrapper">
<h2>squirtle</h2>
<p>height: 7 dm</p>
<p>weight: 69 hg</p>
<p>types: grass, poison</p>
</div>
</a>
<a class="card" href="./pokemon/8.html">
<div class="img-wrapper">
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/8.png" alt="wartortle">
</div>
<div class="info-wrapper">
<h2>wartortle</h2>
<p>height: 7 dm</p>
<p>weight: 69 hg</p>
<p>types: grass, poison</p>
</div>
</a>
<a class="card" href="./pokemon/9.html">
<div class="img-wrapper">
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/9.png" alt="blastoise">
</div>
<div class="info-wrapper">
<h2>blastoise</h2>
<p>height: 7 dm</p>
<p>weight: 69 hg</p>
<p>types: grass, poison</p>
</div>
</a>
<a class="card" href="./pokemon/10.html">
<div class="img-wrapper">
<img src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/10.png" alt="caterpie">
</div>
<div class="info-wrapper">
<h2>caterpie</h2>
<p>height: 7 dm</p>
<p>weight: 69 hg</p>
<p>types: grass, poison</p>
</div>
</a>
</div>
</main>
</body>
</html>