Files
bigredbutton/RPG/index.html
2024-03-14 23:44:05 +01:00

34 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BRB - Secret RPG</title>
<link rel="stylesheet" href="../css/rpg.css">
<link rel="shortcut icon" href="../img/rpg.svg" type="image/x-icon">
</head>
<body>
<div id="game">
<div id="stats">
<span class="stat">XP: <strong><span id="xpText">0</span></strong></span>
<span class="stat">Health: <strong><span id="hpText">100</span></strong></span>
<span class="stat">Gold: <strong><span id="goldText">50</span></strong></span>
</div>
<div id="controls">
<button id="button1">Go to Store</button>
<button id="button2">Go to Cave</button>
<button id="button3">Fight the Dragon</button>
</div>
<div id="monsterStats">
<span class="stat">Monster Name: <strong><span id="monsterName"></span></strong></span>
<span class="stat">Health: <strong><span id="monsterHp"></span></strong></span>
</div>
<div id="text">
Welcome to BRB - Secret RPG. You must defeat the dragon that is preventing people from leaving the town. You are in the town square. Where do you want to go? Use the buttons above.
</div>
</div>
<script src="../js/rpg.js"></script>
</body>
</html>