index.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!doctype html>
  2. <html class="no-js" lang="">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="x-ua-compatible" content="ie=edge">
  6. <title></title>
  7. <meta name="description" content="">
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <link rel="manifest" href="site.webmanifest">
  10. <link rel="apple-touch-icon" href="icon.png">
  11. <!-- Place favicon.ico in the root directory -->
  12. <link rel="stylesheet" href="css/normalize.css">
  13. <link rel="stylesheet" href="css/main.css">
  14. <link rel="stylesheet" href="css/styles.css">
  15. </head>
  16. <body>
  17. <!--[if lte IE 9]>
  18. <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
  19. <![endif]-->
  20. <!-- Add your site or application content here -->
  21. <div class="container">
  22. <p>Hello world! This is HTML5 Boilerplate.</p>
  23. <button onclick="sayHelloAgain()">Say hello again</button>
  24. </div>
  25. <script src="js/vendor/modernizr-3.5.0.min.js"></script>
  26. <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
  27. <script>window.jQuery || document.write('<script src="js/vendor/jquery-3.2.1.min.js"><\/script>')</script>
  28. <script src="js/plugins.js"></script>
  29. <script src="js/main.js"></script>
  30. <!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
  31. <script>
  32. window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
  33. ga('create','UA-XXXXX-Y','auto');ga('send','pageview')
  34. </script>
  35. <script src="https://www.google-analytics.com/analytics.js" async defer></script>
  36. <script>
  37. function sayHelloAgain() {
  38. alert('Hello world!');
  39. }
  40. </script>
  41. </body>
  42. </html>