Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <link href="css/styless.css" type="text/css" rel="stylesheet">
  6. <script type="text/javascript">
  7. window.addEventListener("load", app);
  8. function app() {
  9. var canvas = document.getElementById("canvas1");
  10. var context = canvas.getContext("2d");
  11. context.fillStyle = "#FFFFFF";
  12. context.fillRect(0, 0, canvas.width, canvas.height);
  13. context.fillStyle = "#0080FF";
  14. context.beginPath();
  15. context.arc(400, 300, 100, 0, 2*Math.PI, true);
  16. context.stroke();
  17. context.fill();
  18. }
  19. </script>
  20. </head>
  21. <body>
  22. <canvas id="canvas1" width="800px" height="600px"></canvas>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement