JSFiddle - React, Tailwind, and code Playground
HTML
<title>THIS IS GOING TO BE THE TITLE!!</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/pages.css">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="wrapper-head">
<header class="main-header">
<!--THIS IS WHERE YOUR LINK BUTTONS ARE-->
<div class="main-nav">
<a href="#">Link 1</a>
<a href="#">Link 1</a>
<a href="#">Link 1</a>
<a href="#">Link 1</a>
</div>
</header>
</div>
<!--MAIN CONTENT HERE-->
<div class="mainwrapper">
<div class="main-col">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
<!--YOUR FOOTER GOES HERE -->
<footer>
<p>This website is copyrighted to Todd Squitieri 2014</p>
</footer>
</body>
</html>
CSS
/*general styles for the page */
* {
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
background: #292F3F;
margin: 0;
}
.wrapper-head {
margin: auto;
width: 100%;
background: #000000;
padding: 10px;
min-height: 100px;
}
.main-header {
color: #A4E167;
padding: 10px;
width: 100%;
}
.main-nav a {
text-decoration: none;
display: block;
padding: 10px;
background: tomato;
margin: 10px;
border-radius: 5%;
color: white;
}
@media screen and (max-width: 478px){
.main-nav a {
max-width: 150px;
}
}
@media screen and (max-width: 479px){
.main-nav a {
max-width: 300px;
}
}
@media screen and (min-width: 922px){
.main-nav a {
max-width: 500px;
display: inline;
float: left;
}
h1 {
float: left;
}
}