Created
April 2, 2011 19:42
-
-
Save arlolra/899807 to your computer and use it in GitHub Desktop.
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
/* css */ | |
body, html { height: 100%; margin: 0; } | |
div, h1 { margin: 0; } | |
#content { | |
height: 400px; | |
background: red; | |
position: absolute; | |
top: 50%; | |
margin: -200px 0 0 0; | |
} | |
<!-- html --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf8" /> | |
<link type="text/css" rel="stylesheet" href="css/basic.css" /> | |
<title>Ant Portal</title> | |
</head> | |
<body> | |
<div id="content"> | |
<div class="section"> | |
<h1 id="projects">Projects</h1> | |
<div id="projects_list"> | |
<p>Corporate Website</p> | |
<p>Online Music Game</p> | |
<p>Quebec Tax Credit Software</p> | |
<p>Toys</p> | |
</div> | |
</div> | |
<div id="company" class="section"> | |
<h1>Company</h1> | |
<div> | |
Contact Us Corporate Info Jobs | |
</div> | |
</div> | |
<div id="wiki" class="section"> | |
<h1>More</h1> | |
<div> | |
Blog GitHub TicGit Twitter Wiki | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment