HTML Page Template


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

Simple html page template with external css and javascript files


Copy this code and paste it in your HTML
  1. <!DOCTYPE html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=7,IE=9">
  5. <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no">
  6. <title>Untitled</title>
  7. <link rel="stylesheet" href="http://link/to/styles.css">
  8. <link rel="stylesheet" href="path/to/styles.css">
  9. <script src="http://link/to/directory/or/file.js"></script>
  10. <script src="path/to/file.js"</script>
  11. <!-- js scripts -->
  12. </script>
  13. </head>
  14.  
  15. <body>
  16. <div>
  17. <div>
  18. </div>
  19. </div>
  20. </body>
  21. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.