26 lines
		
	
	
		
			484 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			484 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
    <title>Domača Naloga 1</title>
 | 
						|
 | 
						|
    <script defer src="script.js"></script>
 | 
						|
</head>
 | 
						|
<style>
 | 
						|
    body {
 | 
						|
        margin: 0;
 | 
						|
        padding: 0;
 | 
						|
    }
 | 
						|
 | 
						|
    #drop-zone {
 | 
						|
        width: 100vw;
 | 
						|
        height: 100vh;
 | 
						|
    }
 | 
						|
</style>
 | 
						|
<body>
 | 
						|
<div id="drop-zone">
 | 
						|
    <canvas id="canvas" width="512px" height="512px"></canvas>
 | 
						|
</div>
 | 
						|
</body>
 | 
						|
</html> |