Advertisement
lemansky

Untitled

Apr 20th, 2021
1,042
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.55 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.             context.fillStyle = 'green';
  13.  
  14.         });
  15.     </script>
  16.     <style>
  17.         #canvasId{
  18.             background:black;
  19.         }
  20.     </style>
  21. </head>
  22. <body>
  23.     <canvas id="canvasId" width="800" height="600"></canvas>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement