Advertisement
beezing

Minimal HTML5 Hello World

Feb 8th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.43 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <title>JavaScript Hello World</title>
  5.     </head>
  6.     <body>
  7.         <style>
  8.             div {
  9.               display: inline;
  10.             }
  11.         </style>
  12.         <h1>
  13.             My <div id="js">test</div> works!
  14.         </h1>
  15.         <script>
  16.             var s = "java script";
  17.             document.getElementById("js").innerText = s;
  18.         </script>
  19.     </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement