gunship999 commited on
Commit
a742c58
β€’
1 Parent(s): 08e0a03

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +14 -2
index.html CHANGED
@@ -1,8 +1,9 @@
1
  <!DOCTYPE html>
2
  <html>
3
  <head>
4
- <title>Combat Helicopter Simulator</title>
5
  <meta charset="utf-8">
 
 
6
  <style>
7
  body {
8
  margin: 0;
@@ -222,9 +223,20 @@
222
  border: 1px solid #0f0;
223
  border-radius: 5px;
224
  }
 
 
 
 
 
 
 
 
 
 
225
  </style>
226
  </head>
227
  <body>
 
228
  <div id="cockpit-frame"></div>
229
  <div id="cockpit-overlay"></div>
230
  <div id="info">
@@ -258,4 +270,4 @@
258
  </script>
259
  <script type="module" src="game.js"></script>
260
  </body>
261
- </html>
 
1
  <!DOCTYPE html>
2
  <html>
3
  <head>
 
4
  <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Combat Helicopter Simulator</title>
7
  <style>
8
  body {
9
  margin: 0;
 
223
  border: 1px solid #0f0;
224
  border-radius: 5px;
225
  }
226
+
227
+ #loading {
228
+ position: fixed;
229
+ top: 50%;
230
+ left: 50%;
231
+ transform: translate(-50%, -50%);
232
+ color: #0f0;
233
+ font-size: 24px;
234
+ z-index: 2000;
235
+ }
236
  </style>
237
  </head>
238
  <body>
239
+ <div id="loading">Loading game assets...</div>
240
  <div id="cockpit-frame"></div>
241
  <div id="cockpit-overlay"></div>
242
  <div id="info">
 
270
  </script>
271
  <script type="module" src="game.js"></script>
272
  </body>
273
+ </html>