1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <html>
- <head>
- <style>
- #wrap, #text {
- width: 100%;
- height: 100%;
- max-width: 640px;
- max-height: 480px;
- margin: auto;
- text-align: center;
- }
- #controls {
- margin: 0px auto;
- }
- @media (prefers-color-scheme: dark) {
- body, #wrap, #text {
- background-color: #111111;
- color: #FFFFFF;
- }
- }
- </style>
- </head>
- <body>
- <div id="wrap">
- <div id="game"></div>
- </div>
- <div id="text">
- <h1>Duality</h1>
- <p>A GameBoy (Color) port of the GTA San Andreas arcade game Duality.</p>
- <table id="controls" border="1">
- <tr><th>Key</th><th>Action</th></tr>
- <tr><td>Arrow Left</td><td>Rotate Left</td></tr>
- <tr><td>Arrow Right</td><td>Rotate Right</td></tr>
- <tr><td>Z</td><td>Accelerate</td></tr>
- <tr><td>X</td><td>Shoot</td></tr>
- </table>
- <hr>
- <p>Download the <a href="https://xythobuz.github.io/Duality/duality.gb">ROM</a>!</p>
- <p>Get the source code on <a href="https://github.com/xythobuz/Duality">GitHub</a>.</p>
- <p>Emulation supported by <a href="https://emulatorjs.org">EmulatorJS</a>.</p>
- </div>
- <script>
- EJS_player = "#game";
- EJS_core = "gb";
- EJS_pathtodata = "https://cdn.emulatorjs.org/stable/data/";
- EJS_gameUrl = "https://xythobuz.github.io/Duality/duality.gb";
- </script>
- <script src="https://cdn.emulatorjs.org/stable/data/loader.js"></script>
- </body>
- </html>
|