This is an example of a HTML caption with a link.

Tuesday, July 31, 2012

sdfsdfsdf

<!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>Site Name Here</title>

<style type="text/css">

    body{

    background:#090909;

    margin:0;

    }

    

    #gallery{

    width:auto;

    height:auto;

    }

    

    #gallery img{

    border:1px solid #FF66CC;

    }

    

    a#pics img{

    width:35px;

    height:600px;

    }

    

    a:hover#pics img{

    width:auto;

    height:auto;

    }



</style>

</head>



<body>

<div id="gallery">

<a id="pics" href="#"><img src="01.jpg" /></a>

<a id="pics" href="#"><img src="02.jpg" /></a>

<a id="pics" href="#"><img src="03.jpg" /></a>

<a id="pics" href="#"><img src="04.jpg" /></a>

<a id="pics" href="#"><img src="05.jpg" /></a>

<a id="pics" href="#"><img src="06.jpg" /></a>

</div>

</body>

</html>