Created
October 16, 2013 19:11
-
-
Save johnlindquist/7013113 to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
<!--[if lt IE 7]> | |
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> | |
<html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> | |
<html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> | |
<html class="no-js"> <!--<![endif]--> | |
<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"> | |
<link rel="stylesheet" href="styles/styles.css"> | |
</head> | |
<body class="holy-grail"> | |
<header>Header</header> | |
<div class="container"> | |
<main class="content"> | |
<div class="item"> | |
<h2>Item 1</h2> | |
<ul> | |
<li>Lorem ipsum dolor.</li> | |
<li>Accusamus, tenetur veniam?</li> | |
<li>Aperiam, deleniti, facere?</li> | |
</ul> | |
</div> | |
<div class="item"> | |
<h2>Item 2</h2> | |
<ul> | |
<li>Lorem ipsum dolor.</li> | |
<li>Assumenda ipsam, voluptates!</li> | |
<li>At, molestiae reprehenderit.</li> | |
</ul> | |
</div> | |
<div class="item"> | |
<h2>Item 3</h2> | |
<ul> | |
<li>Lorem ipsum dolor.</li> | |
<li>In, laboriosam nisi.</li> | |
<li>Exercitationem, itaque, provident.</li> | |
</ul> | |
</div> | |
</main> | |
<nav class="nav">Navigation</nav> | |
<aside class="ads">Ads</aside> | |
</div> | |
<footer>Footer</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment