Advertisement
sourav8256

Untitled

Aug 4th, 2023
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 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>Full-Screen Orange Canvas</title>
  7. <style>
  8. body, html {
  9. margin: 0;
  10. padding: 0;
  11. overflow: hidden;
  12. }
  13.  
  14. canvas {
  15. display: block;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <canvas id="orangeCanvas"></canvas>
  21.  
  22. <script>
  23. const canvas = document.getElementById('orangeCanvas');
  24. const context = canvas.getContext('2d');
  25.  
  26. // Set canvas size to fill the screen
  27. canvas.width = window.innerWidth;
  28. canvas.height = window.innerHeight;
  29.  
  30. // Fill canvas with orange color
  31. context.fillStyle = 'orange';
  32. context.fillRect(0, 0, canvas.width, canvas.height);
  33. </script>
  34. </body>
  35. </html>
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement