diff options
Diffstat (limited to 'client/index.html')
-rw-r--r-- | client/index.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/client/index.html b/client/index.html index 50ae8ef..fb1e66e 100644 --- a/client/index.html +++ b/client/index.html @@ -1,9 +1,14 @@ <!DOCTYPE html> <html> <head> - <link rel="stylesheet" href="/css/main.css"/> + <link rel="stylesheet" href="css/main.css"/> </head> <body> + <img src="img/wall_atlas.png" id="atlas" style="display: none;"/> + <div id="container" style="display: none;"> + <canvas id="canvas" style="display: none;"></canvas> + </div> + <style id="style"></style> <div id="center"> <div id="fps"></div> <form id="join" autocomplete="off"> @@ -16,8 +21,7 @@ <div id="players"></div> <input type="button" id="start" value="Start Game"/> </div> - <canvas id="can"></canvas> </div> - <script src="/js/main.js" type="module"></script> + <script src="js/main.js" type="module"></script> </body> </html> |