lemansky

Untitled

Nov 26th, 2020 (edited)
637
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 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>Document</title>
  7.     <script>
  8.         document.addEventListener('DOMContentLoaded', function(){
  9.             const canvas = document.getElementById("canvasId");
  10.             const context = canvas.getContext("2d");
  11.  
  12.         });
  13.     </script>
  14.     <style>
  15.         #canvasId{
  16.             background:black;
  17.         }
  18.     </style>
  19. </head>
  20. <body>
  21.     <canvas id="canvasId" width="800" height="600"></canvas>
  22. </body>
  23. </html>
Add Comment
Please, Sign In to add comment