Advertisement
formulake

Game Index

May 24th, 2024
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.44 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Pill Slicer</title>
  7.     <style>
  8.         body {
  9.             margin: 0;
  10.             overflow: hidden;
  11.         }
  12.         canvas {
  13.             display: block;
  14.         }
  15.     </style>
  16. </head>
  17. <body>
  18.     <canvas id="gameCanvas"></canvas>
  19.     <script src="game.js"></script>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement