Spaces:
Sleeping
Sleeping
File size: 1,389 Bytes
c8e039e 9fd3a67 c8e039e |
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 34 35 36 37 38 39 40 41 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Text to Survive - A text based horror escape game</title>
<link rel="stylesheet" href="../assets/css/index-style.css" />
<link rel="stylesheet" href="../assets/css/how-to-play.css" />
</head>
<body>
<div class="led-bar">
<div class="light-beam"></div>
</div>
<div class="background-elements">
<img src="../assets/img/blood-2.png" alt="" class="blood blood-top-left" />
<img src="../assets/img/help.png" alt="" class="blood blood-top-right" />
<img src="../assets/img/splatter.png" alt="" class="blood splatter" />
<img src="../assets/img/hand.png" alt="" class="blood blood-bottom-right" />
</div>
<main>
<div class="content">
<h1>How to Play</h1>
<div class="game-description">
<p>Your girlfriend is trapped in your apartment</p>
<img
src="../assets/img/gf.png"
alt="Trapped girlfriend"
class="gf-image"
/>
</div>
<div class="navigation-buttons">
<a href="../index.html" class="back-button back-to-menu">Back to Menu</a>
<a href="how-to-play-2.html" class="next-button">Next 1/4</a>
</div>
</div>
</main>
</body>
</html>
|