36 lines
		
	
	
		
			598 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			598 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
|     <title>CA</title>
 | |
| 
 | |
|     <style type="text/css">
 | |
|     #viewport {
 | |
|         position: absolute;
 | |
|         top: 0;
 | |
|         bottom: 0;
 | |
|         left: 0;
 | |
|         right: 0;
 | |
| 
 | |
|         margin: auto;
 | |
| 
 | |
|         padding: 10px;
 | |
|         height: 640px;
 | |
|         width: 900px;
 | |
|     }
 | |
| 
 | |
|     #board {
 | |
|         border: 1px solid;
 | |
|         border-color: '#bbb';
 | |
|     }
 | |
|     </style>
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|     <div id="viewport">
 | |
|         <canvas id="canvas" height="600" width="800"></canvas>
 | |
|     </div>
 | |
| 
 | |
|     <script src="ca-interactive.js"></script>
 | |
| </body>
 | |
| </html>
 |