Skip to content
Snippets Groups Projects
index.html 472 B
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Pokémon Filter</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <h1>Liste de Pokémon</h1>
    <button id="all">Tous</button>
    <button id="weight">+ de 3kg</button>
    <button id="height">- de 1m</button>
    <ul id="pokemon-list"></ul>
    <script src="script.js"></script>
</body>
</html>