Skip to content

Instantly share code, notes, and snippets.

@tdavis
Created February 11, 2009 02:36
Show Gist options
  • Save tdavis/61781 to your computer and use it in GitHub Desktop.
Save tdavis/61781 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>untitled</title>
<style type="text/css" media="screen">
#wrapper {
border:1px solid;
padding: 1em;
}
#menu a {
padding: 1em;
border: 1px solid;
float:left;
display:block;
margin:0 .5em;
}
#menu {
margin:0 -.5em;
padding:0;
}
#menu li {
float: left;
list-style:none;
}
.clear {clear: both;}
</style>
</head>
<body>
<div id="wrapper">
<ul id="menu">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<br class="clear">
<p>Here is my content.</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment