Skip to content

Instantly share code, notes, and snippets.

@motdotla
Forked from anonymous/gist:105681
Created May 2, 2009 20:09
Show Gist options
  • Save motdotla/105687 to your computer and use it in GitHub Desktop.
Save motdotla/105687 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Test2</title>
<link rel="stylesheet" type="text/css" media="all" href="css/uncompressed/reset.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/uncompressed/960.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/master.css" />
</head>
<body>
<div id="page">
<div class="container_12">
<div class="grid_8" id="content">
<div id="featured">Grid 8
</div>
<div id="featured-nav">Bottom of grid 8</div>
<div class="clear"></div>
<div class="grid_8" id="content">
<div class="grid_4 alpha">Box1</div>
<div class="grid_4 omega">
Box2</div>
<div class="grid_4 alpha">Box3</div>
<div class="grid_4 omega">Box4</div>
</div>
</div>
<div class="grid_4" id="content">
<div id="featured">
Side Grid 4
</div>
</div>
</div><!-- /end page -->
</body>
</html>
/* put all your own css stuff here */
#page {
background-image: url(images/body_bg.png); /* the location of the url is key. see below */
background-repeat: repeat-x;
background-position: top left;
}
/* the location is assuming your structure looks like this
site_folder_name/
index.html
images/
body_bg.png
css/
master.css
uncompressed/
reset.css
960.css
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment