Skip to content
Snippets Groups Projects
index.html 1.06 KiB
Newer Older
  • Learn to ignore specific revisions
  • <!DOCTYPE html>
    <html>
        <head>
            <title>CHIP-Ahoyto</title>
    
            <link rel="icon" href="res/icon.png" />
    
            <link rel="stylesheet" href="index.css" />
    
        </head>
        <body>
    
                <div class="side-right">
                    <canvas class="canvas" id="chip-canvas" width="640" height="320"></canvas>
                </div>
                <div class="side-left">
    
                    <h1>CHIP-Ahoyto</h1>
    
                    <p>This is a <a href="https://en.wikipedia.org/wiki/CHIP-8" target="_blank">CHIP-8</a> emulator built using the rust programming language and is running inside this browser with the help of <a href="https://webassembly.org/" target="_blank">WebAssembly</a>.</p>
                    <p>You can check the source code of it at <a href="https://gitlab.stage.hive.pt/joamag/chip-ahoyto" target="_blank">GitLab</a>.</p>
    
            <div id="overlay" class="overlay">
    
                Drag to load ROM <span id="rom-name"></span>
    
            </div>
            <script type="module" src="index.js"></script>
    
        </body>
    </html>