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

It keeps telling me to add a link, even though I already have. I dont see the problem here, could I get some help? I’m pretty new to javascript and coding so it might be my own inexperience shining here.

Code thus far

RPG - Dragon Repeller

<!-- User Editable Region -->

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

<!-- User Editable Region -->
### Challenge Information:
Learn Basic JavaScript by Building a Role Playing Game - Step 1
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures-v8/learn-basic-javascript-by-building-a-role-playing-game/step-1

Hi! Your closing html tag should be in the end of the file

Also remove a dot with a slash here

2 Likes

Hello, Thank you very much I didnt realize that! it worked after I moved the closing tag for the html element!

2 Likes

Thanks a lot . Now accepted

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