Created
December 4, 2015 02:35
-
-
Save icemancast/ab05c15760e5a858859b 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> | |
<html> | |
<head> | |
<title>Template</title> | |
<link rel="stylesheet" href="/assets/css/normalize.css"> | |
<link rel="stylesheet" href="/assets/css/style.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<nav class="navigation"> | |
<ul> | |
<li><a href="#">Link 1</a></li> | |
<li><a href="#">Link 1</a></li> | |
<li><a href="#">Link 1</a></li> | |
<li><a href="#">Link 1</a></li> | |
</ul> | |
</nav> | |
<!-- image file area --> | |
<header> | |
<div class="form"> | |
</div> | |
</header> | |
<main class="content"> | |
<div class="left-guy"> | |
<h1>Some title</h1> | |
<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 class="right-guy"> | |
<h2>Some title</h2> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod | |
tempor incididunt ut labore et dolore magna aliqua.</p> | |
</div> | |
</main> | |
<div class="clearfix"></div> | |
<footer> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod | |
tempor incididunt ut labore et dolore magna aliqua.</p> | |
</footer> | |
</div> | |
</body> | |
</html> |
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
* { | |
box-sizing: border-box; | |
} | |
.container { | |
border: 1px solid #000; | |
height: 100%; | |
width: 80%; | |
padding: 20px; | |
margin: 0px auto; | |
} | |
header { | |
background-color: #ccc; | |
height: 200px; | |
width: 100%; | |
} | |
.navigation ul { | |
list-style: none; | |
padding-left: 0px; | |
} | |
.navigation ul li { | |
display: inline; | |
margin-right: 7px; | |
} | |
.left-guy { | |
float: left; | |
padding: 15px; | |
width: 70%; | |
} | |
.right-guy { | |
float: right; | |
padding: 15px; | |
width: 30%; | |
} | |
.clearfix { | |
clear: both; | |
} | |
.form { | |
border: 1px solid #000; | |
height: 150px; | |
margin: 25px auto; | |
width: 50%; | |
} | |
footer { | |
background-color: red; | |
padding: 15px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment