| 12345678910111213141516171819202122232425262728293031 |
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title>Atomic Game Engine Web Player</title>
- <link rel='shortcut icon' href='favicon.ico' type='image/x-icon'/ >
- <style type="text/css">
- body {
- background-image: url("background.jpg");
- background-size: cover;
- }
- </style>
- </head>
- <body>
- <a href="http://atomicgameengine.com/"><img src="Atomic_Logo_Header-i.png"></a>
- <center>
- <iframe id="playerframe" src="AtomicPlayer.html" width="800", height="512", marginwidth="0", marginheight="0", frameborder="0", scrolling="no"></iframe>
- </center>
- <h4 style="color:white;">Notes:</h4>
- <p style="color:white;">* Run on <b>Firefox</b> for best results.</p>
- <p style="color:white;">* Powered by the <a href="http://atomicgameengine.com/">Atomic Game Engine</a></p>
- </body>
- <script>
- function focus()
- {
- var iframe = document.getElementById('playerframe');
- iframe.contentWindow.focus();
- }
- window.setInterval(focus, 100);
- </script>
|