Why doesn't pass my code. I am now working building a role playing game

<!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"></div>
        <div id="monsterStats"></div>
        <div id="text"></div>
    </div>
</body>
</html>

We need to know the step you are on.

In the future, use the Help button in the step to ask a question in here. If you do that it will automatically include your code and a link to the step.

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