All checks were successful
DEPLOY / deploy (push) Successful in 6s
feat(images): add Pokémon images for random selection feature style(CSS): enhance styling for body, buttons, and layout for better user experience
17 lines
452 B
HTML
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>
|