47 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <title>Game Landing Page</title>
 | |
|     <link rel="stylesheet" href="styles.css" />
 | |
|     <link
 | |
|       rel="apple-touch-icon"
 | |
|       sizes="180x180"
 | |
|       href="../../favicon_io/apple-touch-icon.png"
 | |
|     />
 | |
|     <link
 | |
|       rel="icon"
 | |
|       type="image/png"
 | |
|       sizes="32x32"
 | |
|       href="../../favicon_io/favicon-32x32.png"
 | |
|     />
 | |
|     <link
 | |
|       rel="icon"
 | |
|       type="image/png"
 | |
|       sizes="16x16"
 | |
|       href="../../favicon_io/favicon-16x16.png"
 | |
|     />
 | |
|     <link rel="manifest" href="../../favicon_io/site.webmanifest" />
 | |
|   </head>
 | |
|   <body>
 | |
|     <div class="landing-page">
 | |
|       <div class="game-background">
 | |
|         <!-- Game is embedded or shown as background -->
 | |
|         <canvas id="gameCanvas"></canvas>
 | |
|       </div>
 | |
| 
 | |
|       <div class="content">
 | |
|         <h1>Welcome to the Asteroid Game!</h1>
 | |
|         <p>
 | |
|           In this game, you control a spaceship that shoots at asteroids to
 | |
|           avoid destruction and collect items for power-ups.
 | |
|         </p>
 | |
|         <p>Your goal is to survive as long as possible while scoring points!</p>
 | |
|         <button onclick="window.location.href='secret.html'">Play Game</button>
 | |
|       </div>
 | |
|     </div>
 | |
| 
 | |
|     <script src="app.js"></script>
 | |
|   </body>
 | |
| </html>
 |