site-perso-poly/TP4.html
Djalim Simaila 270aa2d740
All checks were successful
DEPLOY / deploy (push) Successful in 6s
feat(HTML, CSS, JS): add new TP4.html file with Pokémon randomizer functionality and associated assets
feat(images): add Pokémon images for random selection feature
style(CSS): enhance styling for body, buttons, and layout for better user experience
2025-01-22 11:44:16 +01:00

17 lines
452 B
HTML

<head>
<meta name="Acceuil">
<meta charset="UTF-8">
<link rel="stylesheet" href="static/style.css">
</head>
<body>
<div id="main">
<div id="pokemon_team">
<img id="pokemon_frame" src="" alt="">
<p id="pokemon_name"></p>
<p id="pokemon_desc"></p>
<button type="button" onclick="chose_random_pokemon()">Check out a random pokemon</button>
</div>
</div>
<script src="static/js/TP4.js" defer></script>
</body>