HTML5 Page Start with jQuery


/ Published in: HTML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <meta charset="utf-8" />
  4. <title>HTML5 Page Start</title>
  5. <link rel="stylesheet" href="css/main.css" type="text/css" />
  6. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  7. <script type="text/javascript">
  8. $(document).ready(function() {
  9. // This is more like it!
  10. });
  11. <!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
  12. </head>
  13.  
  14. </body>
  15. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.