Projet_JS/help.html
2025-01-03 12:13:39 +01:00

35 lines
997 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Démineur - Help</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="container">
<header>
<img src="logo.png" alt="Logo du Démineur" class="logo">
<h1>Comment jouer au démineur ?</h1>
</header>
<main>
<p>Préparez-vous à une expérience de jeu inoubliable! Cliquez sur le bouton ci-dessous pour commencer votre aventure.</p>
<img src="smile.png" alt="Image de bienvenue" class="welcome-image">
<button id="play-button">JOUER</button>
</main>
<footer>
<p>&copy; 2024 Démineur. Tous droits réservés.</p>
</footer>
</div>
<script type="text/javascript">
document.getElementById('play-button').addEventListener('click', () => {
window.location.href = 'demineur.html';
});
</script>
</body>
</html>