Guest User

Untitled

a guest
Jul 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Canvas</title>
  4. </head>
  5. <body>
  6. <canvas id="canvas" width="300" height="300"></canvas>
  7. <script type="text/javascript">
  8. var ctx = document.getElementById("canvas").getContext("2d");
  9. ctx.fillRect(0,0,150,150);
  10. </script>
  11. </body>
  12. </html>
Add Comment
Please, Sign In to add comment