Spaces:
Sleeping
Sleeping
File size: 958 Bytes
f28e771 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Through Their Eyes - How to Play</title>
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<div class="led-bar">
<div class="light-beam"></div>
</div>
<div class="background-elements">
<img src="public/blood-2.png" alt="" class="blood blood-top-left" />
<img src="public/help.png" alt="" class="blood blood-top-right" />
<img src="public/splatter.png" alt="" class="blood splatter" />
<img src="public/hand.png" alt="" class="blood blood-bottom-right" />
</div>
<main>
<div class="content">
<h1>How to Play</h1>
<!-- Contenu à ajouter -->
</div>
<a href="index.html" class="back-button">Back to Menu</a>
</main>
<script type="module" src="/src/main.js"></script>
</body>
</html>
|