diff options
Diffstat (limited to 'gb')
-rw-r--r-- | gb/index.html | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/gb/index.html b/gb/index.html new file mode 100644 index 0000000..40b63a7 --- /dev/null +++ b/gb/index.html @@ -0,0 +1,104 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <link rel="icon" href="https://static.luevano.xyz/images/gb/gb_icon.svg" /> + <title>Gameboy</title> + + <script src="https://static.luevano.xyz/scripts/jquery-3.5.1.min.js"></script> + <script src="https://static.luevano.xyz/scripts/gb.js"></script> + + <link rel="stylesheet" href="https://static.luevano.xyz/css/gb.css"> +</head> +<body> + <div class="gameboy"> + <img class="screen" src="https://gb.luevano.xyz/image" id="game_img"><br><br> + + + <table class="controls"> + <thead> + <tr> + <th/> + <th/> + <th/> + <th/> + <th/> + <th/> + <th/> + </tr> + </thead> + <tbody> + <tr> + <td/> + <td> + <input type="image" src="https://static.luevano.xyz/images/gb/up.png" alt="Up" id="btn_up"> + </td> + <td/> + <td/> + <td/> + <td/> + <td> + <a href="https://gb.luevano.xyz"><img src="https://static.luevano.xyz/images/gb/refresh.png"></a> + </td> + </tr> + <tr> + <td> + <input type="image" src="https://static.luevano.xyz/images/gb/left.png" alt="Left" id="btn_left"> + </td> + <td/> + <td> + <input type="image" src="https://static.luevano.xyz/images/gb/right.png" alt="Right" id="btn_right"> + </td> + <td/> + <td/> + <td> + <input type="image" src="https://static.luevano.xyz/images/gb/B.png" alt="B" id="btn_b"> + </td> + <td> + <input type="image" src="https://static.luevano.xyz/images/gb/A.png" alt="A" id="btn_a"> + </td> + </tr> + <tr> + <td/> + <td> + <input type="image" src="https://static.luevano.xyz/images/gb/down.png" alt="Down" id="btn_down"> + </td> + <td/> + <td/> + <td/> + <td/> + <td/> + </tr> + <tr> + <td/> + <td/> + <td/> + <td> + <input type="image" src="https://static.luevano.xyz/images/gb/select.png" alt="Select" id="btn_select"> + </td> + <td> + <input type="image" src="https://static.luevano.xyz/images/gb/start.png" alt="Start" id="btn_start"> + </td> + <td/> + <td/> + </tr> + <tr> + <td/> + <td/> + <td/> + <td/> + <td/> + <td/> + <td/> + </tr> + </tbody> + </table> + </div> + + <p> + <a href="https://github.com/HFO4/gameboy.live">Gameboy emulator written in Go</a> by <a href="https://github.com/HFO4">Aaron Liu AKA HFO4 on GitHub</a>.<br> + Input button images also taken from him. + </p> + +</body> +</html> |