<!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="main">
            <canvas class="canvas" id="chip-canvas" width="640" height="320"></canvas>
            <div class="side">
                <h1>CHIP-Ahoyto</h1>
                <p>This is a CHIP-8 emualtor built using the rust programming language and is running inside this browser with the help of WebAssembly</p>
            </div>
        </div>
        <div id="overlay" class="overlay">
            Drag to load ROM <span id="rom-name"></span>
        </div>
        <script type="module" src="index.js"></script>
    </body>
</html>