23 lines
		
	
	
	
		
			522 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			522 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| 
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <title>r_bridge</title>
 | |
|     <link rel="stylesheet" href="styles.css">
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|     <div class="game-screen">
 | |
|         <div class="help-text" id="help-text"> This is a help text. </div>
 | |
|         <div class="text-ui" id="text-ui">
 | |
|             <button>E</button>
 | |
|             <p>Interact</p>
 | |
|         </div>
 | |
|     </div>
 | |
|     <script src="script.js"></script>
 | |
| </body>
 | |
| 
 | |
| </html>
 | |
| 
 | 
