Learn Basic JavaScript by Building a Role Playing Game - Step 17

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="./styles.css">
    <title>RPG - Dragon Repeller</title>
    <script src="./script.js"></script>
  </head>
  <body>
    <div id="game">
<strong><div class="stat">XP: 0</div></strong>
<strong><span id="xpText">0</span></strong>
<strong><span id="healthText">100</span></strong>
<strong><span id="goldText">50</span></strong>
      </div>
      <div id="controls"></div>
      <div id="monsterStats"></div>
      <div id="text"></div>
    </div>
  </body>
</html>

You should add a strong element in your first .stat element.What’s wrongggggg

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Welcome to the forum @jamesjunto22

Please reset the step to restore the original code.

Then start nesting the elements around the numbers.

Happy coding

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.