Blank HTML template with hosted src, viewport & respond.js


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

Blank HTML template with minimal hosted srcs and respond.js


Copy this code and paste it in your HTML
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta name="content-type" content="text/html; charset=UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
  7.  
  8. <title>HTML template</title>
  9. <link rel="stylesheet" href="http://meyerweb.com/eric/tools/css/reset/reset.css" type="text/css" media="screen" />
  10. <!--[if lt IE 9]>
  11. <script src="https://raw.github.com/scottjehl/Respond/master/respond.min.js"></script>
  12. <![endif]-->
  13. <script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
  14. </head>
  15. <body>
  16. <script type="text/javascript">
  17. $(document).ready(function() {
  18. //do this
  19. }
  20. </script>
  21. </body>
  22. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.