Advertisement
tmcopeland

HTML5 Boilerplate and Example Page

Mar 1st, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.49 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  2.     <head>
  3.         <title>Title of Your Web Page Goes Here</title>
  4.         <meta charset="utf-8"/>
  5.     </head>
  6.     <body>
  7.         <!-- Put your page content here. -->
  8.         <script type="text/javascript">
  9.             // Put your embedded JavaScript here.
  10.             /* Some example JS */
  11.             var bodyIsLoaded = true;
  12.             console.log("The page body has been loaded");
  13.         </script>
  14.     </body>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement