24 lines
		
	
	
		
			598 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			598 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<html>
 | 
						|
    <head>
 | 
						|
        <title>JDG :: Tetris JS</title>
 | 
						|
        <script src="tetris.js"></script>
 | 
						|
        <style>
 | 
						|
            html, body {
 | 
						|
                width: 100%;
 | 
						|
                height: 100%;
 | 
						|
                padding: 0;
 | 
						|
                margin: 0;
 | 
						|
            }            
 | 
						|
            #app{     
 | 
						|
                position: fixed; /* absolute */
 | 
						|
                top: 0;
 | 
						|
                left: 0;
 | 
						|
                width: 100vw;    /* 100% */
 | 
						|
                height: 100vh;   /* 100% */ 
 | 
						|
            }
 | 
						|
        </style>
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <canvas id="app"></canvas>
 | 
						|
    </body>
 | 
						|
</html> |