Mercurial
comparison color_game/index.html @ 186:8cf4ec5e2191 hg-web
Fixed merge conflict.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Fri, 23 Jan 2026 22:38:59 -0800 |
| parents | 8d17f6e6e290 |
| children |
comparison
equal
deleted
inserted
replaced
| 176:fed99fc04e12 | 186:8cf4ec5e2191 |
|---|---|
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <title>Raylib</title> | |
| 6 <style> | |
| 7 body { margin: 0; background-color: black; overflow: hidden; } | |
| 8 canvas.emscripten { border: 0 none; background-color: black; width: 100%; height: 100vh; display: block; } | |
| 9 </style> | |
| 10 </head> | |
| 11 <body> | |
| 12 <canvas class="emscripten" id="game" oncontextmenu="event.preventDefault()"></canvas> | |
| 13 <script type='text/javascript' src="main.js"></script> | |
| 14 </body> | |
| 15 </html> |