Team:Calgary/VGSandbox
From 2012.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
+ | |||
+ | <!DOCTYPE html> | ||
+ | |||
<html> | <html> | ||
- | + | <head> | |
- | + | <style type="text/css"> | |
- | + | body{ | |
- | + | height: 100%; | |
+ | overflow: hidden; /* keeps scrollbar off IE */ | ||
+ | font-family: arial,sans-serif; | ||
+ | font-size: 13px; | ||
+ | color: #000; | ||
+ | background-color: #fff; | ||
+ | padding:0px; | ||
+ | margin:0px; | ||
+ | } | ||
+ | canvas:focus{ | ||
+ | outline:none; | ||
+ | } | ||
+ | |||
+ | </style> | ||
+ | </head> | ||
+ | |||
+ | <body> | ||
+ | |||
+ | <canvas id="GameCanvas" onclick="javascript:this.focus();" width=640 height=480 tabindex=1></canvas><br> | ||
+ | |||
+ | <script language="javascript" src="main.js">Javascript not supported!</script> | ||
+ | |||
+ | </body> | ||
</html> | </html> |
Revision as of 16:38, 16 May 2012
<!DOCTYPE html>