35 lines
		
	
	
		
			706 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			706 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <title></title>
 | |
|     <style>
 | |
|       body {
 | |
|         display: flex;
 | |
|         justify-content: center;
 | |
|         align-items: center;
 | |
|         height: 100vh;
 | |
|         margin: 0;
 | |
|         background-color: #fff4f6;
 | |
|       }
 | |
| 
 | |
|       #startButton {
 | |
|           cursor: pointer;
 | |
|           transform: scale(0.6);
 | |
|       }
 | |
|     </style>
 | |
| 
 | |
|   </head>
 | |
|   <body background="bgdottedeven.png">
 | |
|     <a href="#" onclick="startGame();">
 | |
|       <img src="landingfull.png" alt="Start Game" id="startButton">
 | |
|     </a>
 | |
|    <script>
 | |
|       function startGame() {
 | |
|         // Redirect to another page
 | |
|         window.location.href = "/home.html";
 | |
|       }
 | |
|     </script>
 | |
|   </body>
 | |
| </html>
 |