Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Made with Thimble</title>
  7. <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10. <canvas id="canvas" width="500" height="300"></canvas>
  11.  
  12. <script>
  13. var canvas = document.getElementById("canvas");
  14. var ctx = canvas.getContext("2d");
  15.  
  16. //desenhando um retangulo
  17. ctx.beginPath();
  18. ctx.rect(20,100,50,50);
  19. ctx.fillStyle = "#00baff";
  20. ctx.fill();
  21. ctx.closePath();
  22. </script>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement