Utilisateur:MDracaufeuZ
<!DOCTYPE html> <html lang="fr"> <head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ma Poképédia</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, sans-serif;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
color: #ffffff;
}
header {
padding: 40px 20px;
text-align: center;
background: rgba(0, 0, 0, 0.4);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
header h1 {
font-size: 3rem;
margin: 0;
letter-spacing: 2px;
}
header p {
font-size: 1.2rem;
opacity: 0.9;
}
main {
max-width: 1100px;
margin: auto;
padding: 40px 20px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.card {
background: rgba(255, 255, 255, 0.08);
border-radius: 20px;
padding: 25px;
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.card h2 {
margin-top: 0;
font-size: 1.6rem;
border-bottom: 2px solid rgba(255,255,255,0.2);
padding-bottom: 10px;
}
.badge {
display: inline-block;
padding: 6px 14px;
border-radius: 999px;
background: #7f5af0;
margin: 6px 6px 0 0;
font-size: 0.9rem;
font-weight: bold;
}
.dragon {
background: linear-gradient(135deg, #7f00ff, #e100ff);
}
footer {
text-align: center;
padding: 20px;
opacity: 0.7;
font-size: 0.9rem;
}
</style>
</head> <body>
<header>
Ma Poképédia
Passion Pokémon • Univers • Jeux • Anime
</header>
<main>
Pokémon favori
Zygarde
Type Dragon Légendaire
Zygarde représente l'équilibre de l'écosystème. Puissant, stratégique et charismatique. Clairement un choix de patron.
Type préféré
Dragon
Le type Dragon, c’est la méta ultime : puissance brute, rareté et respect automatique dans chaque combat.
Manga & Anime
Manga préféré : Pokémon XY
Anime préféré : Pokémon Horizons
Personnage préféré : Rhod
Nouvelle génération, nouvelle vision. Horizons apporte un souffle moderne et plus mature à l’univers Pokémon.
Console
Nintendo Switch
La plateforme idéale pour vivre l’expérience Pokémon complète, du chill au compétitif.
Jeux joués
New Pokémon Snap Pokémon Diamant Étincelant Pokémon Violet Légendes Pokémon : Arceus Légendes Pokémon : Z-A
Jeu préféré
Légendes Pokémon : Z-A
Vision futuriste, gameplay ambitieux, direction artistique solide. C’est le sommet de la licence.
</main>
<footer>
© 2025 • Ma Poképédia personnelle • Powered by passion Pokémon
</footer>
</body> </html>