|
|
@@ -13,6 +13,7 @@
|
|
|
|
|
|
<link rel="stylesheet" href="css/normalize.css">
|
|
|
<link rel="stylesheet" href="css/main.css">
|
|
|
+ <link rel="stylesheet" href="css/styles.css">
|
|
|
</head>
|
|
|
<body>
|
|
|
<!--[if lte IE 9]>
|
|
|
@@ -20,7 +21,10 @@
|
|
|
<![endif]-->
|
|
|
|
|
|
<!-- Add your site or application content here -->
|
|
|
- <p>Hello world! This is HTML5 Boilerplate.</p>
|
|
|
+ <div class="container">
|
|
|
+ <p>Hello world! This is HTML5 Boilerplate.</p>
|
|
|
+ <button onclick="sayHelloAgain()">Say hello again</button>
|
|
|
+ </div>
|
|
|
<script src="js/vendor/modernizr-3.5.0.min.js"></script>
|
|
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
|
|
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.2.1.min.js"><\/script>')</script>
|
|
|
@@ -33,5 +37,10 @@
|
|
|
ga('create','UA-XXXXX-Y','auto');ga('send','pageview')
|
|
|
</script>
|
|
|
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
|
|
|
+ <script>
|
|
|
+ function sayHelloAgain() {
|
|
|
+ alert('Hello world!');
|
|
|
+ }
|
|
|
+ </script>
|
|
|
</body>
|
|
|
</html>
|