1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!--Part of Snek vs Snacc webapp.
- Released under AGPLv3. Copyright (C) NetherEran 2020-->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset = "utf-8">
- <title>sn(ek + acc)</title>
- <style>
- body {
- text-align: center;
- color: yellowgreen;
- background-color: black;
- }
- button {
- border-color: lightgrey;
- background-color: black;
- color: yellowgreen;
- height: 50pt;
- width: 150pt;
- font-size: 30pt;
- }
- a {
- color: lightblue;
- }
- </style>
- </head>
- <body>
- <h1>SNEK VS SNACC</h1>
- <canvas width = "760" height = "360" style = "border: 20px solid lightgrey" id = "game_field">Your browser does not appear to support canvases.</canvas>
- <script src = "./game.js"></script>
- </br>
- </br>
- <noscript>This button does nothing unless you enable javascript.</noscript>
-
- <button id = "start_button" onclick = "start()">START</button>
- <footer>Released under <a href = "./license.html">AGPLv3</a> by NetherEran. <a href = "https://notabug.org/NetherEran/snek_vs_snacc_web">Source</a></footer>
- </body>
- </html>
|