-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgalopa.html
57 lines (52 loc) · 1.9 KB
/
galopa.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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Galopa</title>
<link rel="icon" href="assets/logo.png">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./smartphone.css" media="(max-width: 800px)">
<link rel="stylesheet" href="./ordi.css" media="(min-width: 800px)">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Comic+Neue"
>
<meta charset="utf-8">
</head>
<body>
<header>
<h1>Galopa</h1>
</header>
<section id="presentation">
<article>
<img src="assets/galopa.png" alt="Galopa">
</article>
<aside>
<p id="intro">On voit souvent Galopa trotter dans les champs et les plaines. Cependant, lorsque ce Pokémon s'en donne la peine, il peut galoper à plus de 240 km/h et sa crinière flamboyante s'embrase.</p>
</aside>
</section>
<div class="types">
<strong>Types :</strong>
<p class="typeFeu">Feu</p>
</div>
<div class="types">
<strong>Faiblesses :</strong>
<p class="typeEau">Eau</p>
<p class="typeSol">Sol</p>
<p class="typeRoche">Roche</p>
</div>
<div id="caracteristiques">
<ul>
<li><span>Taille : </span>1,7m</li>
<li><span>Poids : </span>95kg</li>
<li><span>Sexe : </span>mâle, femelle</li>
<li><span>Catégorie : </span>Cheval Feu</li>
<li><span>Talent : </span>Fuite, Torche</li>
</ul>
</div>
<nav>
<a href="https://www.pokepedia.fr/Galopa" target="_blank">En savoir plus</a>
<br> <br>
<a href="index.html">Retour à l'accueil</a>
</nav>
</body>
</html>