BLANK HTML with Inline CSS and Jquery


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



Copy this code and paste it in your HTML
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <link rel="stylesheet" type="text/css" href="main.css" />
  5. <style type="text/css">
  6. body {
  7.  
  8. }
  9. #wrapper{
  10.  
  11. }
  12. </style>
  13. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
  14. <script type="text/javascript">
  15. $(document).ready(function () {
  16.  
  17. });
  18. </script>
  19.  
  20.  
  21. </head>
  22. <body>
  23.  
  24. <div id="wrapper">
  25.  
  26. </div>
  27.  
  28. </body>
  29. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.