Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html>
  4. <head>
  5. <title>This is the page title.</title>
  6. </head>
  7. <body>
  8.  
  9. <!--========================================================================-->
  10.  
  11. <p>Some text in a paragraph is here.</p>
  12.  
  13. <canvas width = "300" height = "225"></canvas>
  14.  
  15. <script id = "computer" type="text/javascript">
  16. var computer = document.getElementById("computer");
  17. context = computer.getContext("2d");
  18. context.fillRect(50, 25, 150, 100);
  19. </script>
  20.  
  21. <!--========================================================================-->
  22.  
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement