Guest User

Untitled

a guest
Jul 17th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Hello World</title>
  4. <script type="text/javascript" src="cake.js"></script>
  5. <script language="JavaScript" type="text/javascript">
  6. window.onload = function() {
  7. GameCanvas = new Canvas(document.body, 800, 600);
  8. var hello = new ElementNode(E('h2', 'Hello World'),
  9. {
  10. fontFamily: 'Arial, Sans-serif',
  11. noScaling : true,
  12. color : 'black'
  13. });
  14. hello.align = 'center';
  15. hello.valign = 'center';
  16. GameCanvas.append(hello);
  17. }
  18. </script>
  19. </head>
  20. <body>
  21. </body>
  22. </html>
Add Comment
Please, Sign In to add comment