18 lines
		
	
	
	
		
			614 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
	
		
			614 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
|   | <!DOCTYPE html> | ||
|  | <html> | ||
|  |   <head> | ||
|  |     <meta charset="UTF-8"> | ||
|  |     <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP --> | ||
|  |     <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'"> | ||
|  |     <meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'"> | ||
|  |     <title>Hello World!</title> | ||
|  |   </head> | ||
|  |   <body> | ||
|  |     <h1>Hello World!</h1> | ||
|  |      | ||
|  |     <p>Hit any key with this window focused to see it captured here.</p> | ||
|  |     <div><span>Last Key Pressed: </span><span id="last-keypress"></span></div> | ||
|  |     <script src="./renderer.js"></script> | ||
|  |   </body> | ||
|  | </html> |