Your code is not visible, you need to format it correctly. 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.
Just another quick tip for you: You have the syntax for an HTML comment 90% correct, but you end the comment with -->. You only use the exclamation point at the beginning of the HTML comment. But great job learning how to post code in here… It can be tricky to learn at first.
An HTML comment should look like this with only one exclamation point:
You have your game div inside all the other divs, which isn’t right. All the other divs need to be inside that one. Also you need to close each of the four divs with </div> before adding another one. I’ll show you how the first two should look:
<body>
<div id="game">
<div id="stats"></div>
<div id="controls"></div>
<!-- Put the next 2 divs here... -->
</div>
</body>