Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
project4/index.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
108 lines (94 sloc)
3.3 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html class="no-js" lang=""> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="apple-touch-icon" href="apple-touch-icon.png"> | |
<!-- Place favicon.ico in the root directory --> | |
<link rel="stylesheet" href="css/normalize.css"> | |
<link rel="stylesheet" href="css/main.css"> | |
<script src="js/vendor/modernizr-2.8.3.min.js"></script> | |
</head> | |
<body> | |
<main> | |
<header> | |
<h1>Welcome to my page.</h1> | |
<p>This is just a bunch of boxes.</p> | |
<p>And sentences.</p> | |
</header> | |
<article> | |
<header> | |
<h1>Article Title 1</h1> | |
<p>We're messing around with some...stuff. And things.</p> | |
</header> | |
<section> | |
<h1>But Why?</h1> | |
<p>Because Joel told us to.</p> | |
</section> | |
</article> | |
<article> | |
<header> | |
<h1>Article Title 2</h1> | |
<p>We're messing around with some...stuff. And things</p> | |
</header> | |
<section> | |
<h1>But Why?</h1> | |
<p>Because Joel told us to.</p> | |
</section> | |
</article> | |
<article> | |
<header> | |
<h1>Article Title 3</h1> | |
<p>We're messing around with some...stuff. And things.</p> | |
</header> | |
<section> | |
<h1>But Why?</h1> | |
<p>Because Joel told us to.</p> | |
</section> | |
</article> | |
<article> | |
<header> | |
<h1>Article Title 4</h1> | |
<p>We're messing around with some...stuff. And things.</p> | |
</header> | |
<section> | |
<h1>But Why?</h1> | |
<p>Because Joel told us to.</p> | |
<h2>And then dude threw in a list:</h2> | |
<ul> | |
<li>Because he's a sadist.</li> | |
<li>Because his class is too hard</li> | |
<li>And we hate him.</li> | |
</ul> | |
</section> | |
<footer> | |
Don't forget this little footer. | |
</footer> | |
</article> | |
<footer> | |
© 2015 the greatest class ever. Joel also threw in another list. | |
<ul> | |
<li>Do the CSS.</li> | |
<li>Upload the files.</li> | |
<li>Send Joel the link.</li> | |
</ul> | |
</footer> | |
</main> | |
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script> | |
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.12.0.min.js"><\/script>')</script> | |
<script src="js/plugins.js"></script> | |
<script src="js/main.js"></script> | |
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> | |
<script> | |
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= | |
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; | |
e=o.createElement(i);r=o.getElementsByTagName(i)[0]; | |
e.src='https://www.google-analytics.com/analytics.js'; | |
r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); | |
ga('create','UA-XXXXX-X','auto');ga('send','pageview'); | |
</script> | |
</body> | |
</html> |