diff options
author | elioat <hi@eli.li> | 2023-07-21 11:47:48 -0400 |
---|---|---|
committer | elioat <hi@eli.li> | 2023-07-21 11:47:48 -0400 |
commit | 267b92865e704e875b75f1e6d8d546d235f528c5 (patch) | |
tree | 1974878922b883c34a3d4418dd0c29437f0f4454 /js/gg/index.html | |
parent | 016b46aa15eb570eb471821c05829755944c3267 (diff) | |
download | tour-267b92865e704e875b75f1e6d8d546d235f528c5.tar.gz |
*
Diffstat (limited to 'js/gg/index.html')
-rw-r--r-- | js/gg/index.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/js/gg/index.html b/js/gg/index.html new file mode 100644 index 0000000..04b2a52 --- /dev/null +++ b/js/gg/index.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <title>Hello, world!</title> + <meta name="viewport" content="width=device-width,initial-scale=1" /> + <meta name="description" content="" /> + <link rel="stylesheet" href="styles.css" /> + <script src="game.js"></script> + </head> + <body> + <canvas + id="targetCanvas" + width="512" + height="512" + style="border: 1px solid #000000" + > + </canvas> + <div class="flex-container"> + <fieldset id="dPad" class="flex-item"> + <button id="dUp">Up</button> + <br /> + <button id="dLeft">Left</button> + <button id="dRight">Right</button> + <br /> + <button id="dDown">Down</button> + </fieldset> + <fieldset id="ab" class="flex-item"> + <button id="a">A</button> + <button id="b">B</button> + </fieldset> + </div> + <fieldset id="aux"> + <button id="start">Start</button> + <button id="select">Select</button> + </fieldset> + </body> +</html> |