Advertisement
MusicFreak

Vjezba2

Oct 21st, 2013
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.44 KB | None | 0 0
  1. <html>
  2.  
  3. <canvas id="myCanvas" width="700" height="700"></canvas>
  4. <script>
  5.  
  6. var c=document.getElementById("myCanvas");
  7. var context=c.getContext("2d");
  8. context.fillStyle   = "green";
  9. context.strokeStyle = "yellow";
  10.  
  11. context.beginPath();
  12. context.moveTo(10, 10);
  13. context.lineTo(10, 100);
  14. context.lineTo(100, 100);
  15. context.lineTo(10, 10);
  16.  
  17. context.fill();
  18. context.stroke();
  19. context.closePath();
  20. </script>
  21.  
  22. <body>
  23. </body>
  24.  
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement