Heres some code thats very close to your pic, give it a go:
-- Gallery Index -- gallery/index.html --
<html>
<head>
<title>RetroGallery</title>
<link rel="stylesheet" type="text/css" href="retro.css" />
</head>
<body>
<div id="container">
<div id="banner"><img src="yourbanner.jpg" width="570" height="280" alt="Retro Banner" /></div>
<div id="navigation">
<a href="#">ABOUT RD</a> |
<a href="#">GALLERY</a> |
<a href="#">RD NEWS</a> |
<a href="#">CONTACT RD</a> |
<a href="#">LINKS</a>
</div>
<div id="content"><div id="padding">
<div id="card_1"><!--Content Here--></div>
<div id="card_2"><!--Content Here--></div>
<div id="card_3"><!--Content Here--></div>
<br />
<div id="card_4"><!--Content Here--></div>
<div id="card_5"><!--Content Here--></div>
<div id="card_6"><!--Content Here--></div>
<br />
<div id="left_nav">« Previous Gallery</div>
<div id="right_nav">Next Gallery » </div>
<div style="clear: both;"></div>
</div></div>
<div id="copyright">ALL WORK SOLD REMAINS THE COPYRIGHT OF RETRODESIGNER 2004</div>
</div>
</body>
</html>
-- The CSS File -- retro.css --
body{
text-align: center; /*IE Center Hack*/
background-color: #ffffff;
margin: 0px;
}
a:link, a:active, a:visited, a:hover{
color: #666666;
text-decoration: none;
}
a img{
border: 0px;
}
div#container{
width: 570px;
height: auto;
margin-left: auto;
margin-right: auto;
padding: 0px;
}
div#banner{
width: 570px;
height: 280px;
background-color: #dedede;
border: 1px solid #000000;
}
div#navigation{
width: 570px;
height: auto;
margin-top: 2px;
text-align: center;
background-color: #DEDEDE;
border: 1px solid #000000;
color: #666666;
font-family: arial, sans-serif;
font-size: 13px;
}
div#content{
width: 570px;
height: auto;
margin-top: 2px;
text-align: center;
background-color: #DEDEDE;
border: 1px solid #000000;
}
div#content #padding{
padding: 7px;
}
div#card_1,
div#card_2,
div#card_3,
div#card_4,
div#card_5,
div#card_6{
margin: 0px;
padding: 0px;
width: 180px;
height: 200px;
background-color: #ffffff;
border: 1px solid #000000;
}
div#card_1{
float: left;
}
div#card_2{
float: left;
margin-left: 5px;
margin-right: 5px;
}
div#card_3{
float: left;
}
div#card_4{
float: left;
margin-top: 5px;
}
div#card_5{
float: left;
margin-top: 5px;
margin-left: 5px;
margin-right: 5px;
}
div#card_6{
float: left;
margin-top: 5px;
}
#left_nav{
float: left;
color: #666666;
font-family: arial, sans-serif;
font-size: 13px;
}
#right_nav{
float: right;
color: #666666;
font-family: arial, sans-serif;
font-size: 13px;
}
div#copyright{
width: 570px;
height: auto;
margin-top: 2px;
text-align: center;
background-color: #DEDEDE;
border: 1px solid #000000;
color: #666666;
font-family: arial, sans-serif;
font-size: 13px;
}
That should give you a nice blank gallery template.
Then just change the width and height attributes to fit your actual site. Those are just example sizes based off your image.
Then all you gotta do is slap some images say...soprano.gif, pulpfiction.gif, twiggy.gif in the card divs.

Anyways good luck.
Edited by raenef, 28 November 2005 - 04:47 PM.