Unable to go past step 6
Hi, everyone.
I am unable to go past step 6 on the role playing game as code checker encounters an error within the second span. It hints to make sure the spacing is correct, although it is. You can check from the screen captured gif, as removing and retyping blank space after ‘Health:’ does not solve the issue, neither rewriting the whole of the span element. Any thoughts? Thanks
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./styles.css">
<title>RPG - Dragon Repeller</title>
</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="healthText">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 dragon</button>
</div>
<!-- User Editable Region -->
<div id="monsterStats">
<span class="stat">Monster Name: <strong><span id="monsterName">
</span></strong></span>
<span class="stat">Health: <strong><span id="monsterHealth">
</span></strong></span>
</div>
<!-- User Editable Region -->
<div id="text"></div>
</div>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36
Challenge Information:
Learn Basic JavaScript by Building a Role Playing Game - Step 6