 77e7d828ee
			
		
	
	
	
	
	77e7d828ee* Update docs for keyboard shortcuts * Add a fiddle for web-apis * Apply suggestions from code review Co-authored-by: Erick Zhao <erick@hotmail.ca> * Cleanup a few formatting errors and missed copies * Add descriptions to index.html * Focus on renderer Co-authored-by: Erick Zhao <erick@hotmail.ca>
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			614 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 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>
 |