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

Tell us what’s happening:

Describe your issue in detail here.
Having a weird issue where I am setting up an HTML page for the Basic JavaScript course but it is not accepting my answers even though I have everything setup correctly as far as I am aware, unless something has changed.

Your code so far


<!-- User Editable Region -->

<!DOCTYPE html>
<html lang="">
  <head>
    <meta charset="utf-8">
    <title>RPG - Dragon Repeller</title>
    <link href="styles.css">
  </head>
  <body>
    <div id="game">
    </div>
  </body>
</html>

<!-- User Editable Region -->

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0

Challenge Information:

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

1 Like

You are missing the value here for the lang attribute

2 Likes

Ok. That fixed it. Thank you.
Forgot to put in the “lang=“en”” and that fixed it.

2 Likes

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