Hello, this is probably really simple for someone out there:
I need to set-up a list of thumbnails that link to work samples /my portfolio. I found a great site that explains how to float thumbnails side-by-side, but it doesn't explain how to link these images to the html files or pdf files.
I bet this is another really stupid question but I would appreciate the assistance anyway. Thank you in advance.
Here is the XHTML (First line of thumbnails):
<!- <div class="thumbnail">
<img src="thumbnail/IRSLogo_thumb.jpg" alt="" width="75" height="60"><br>
<p>e-Brochure </p>
</div>
<div class="thumbnail">
<img src="thumbnail/rsm_thumb.jpg" alt="" width="75" height="60"><br>
<p> Partner Collateral </p>
</div>
<div class="thumbnail">
<img src="thumbnail/navigator_thumb.jpg" alt="" width="75" height="60"><br>
<p>Produced & co-wrote e-Newsletters </p>
</div>
<div class="thumbnail">
<img src="thumbnail/IRSLogo_thumb.jpg" alt="" width="75" height="60"><br>
<p>Produced & wrote e-Newsletter </p>
</div>
<br class="clearboth"> -->
Here is the CSS:
/* .thumbnail
{
float: left;
width: 60px;
border: 1px solid #999;
margin: 0 15px 15px 0;
padding: 5px;
}
.clearboth { clear: both; }
*/
I need to set-up a list of thumbnails that link to work samples /my portfolio. I found a great site that explains how to float thumbnails side-by-side, but it doesn't explain how to link these images to the html files or pdf files.
I bet this is another really stupid question but I would appreciate the assistance anyway. Thank you in advance.
Here is the XHTML (First line of thumbnails):
<!- <div class="thumbnail">
<img src="thumbnail/IRSLogo_thumb.jpg" alt="" width="75" height="60"><br>
<p>e-Brochure </p>
</div>
<div class="thumbnail">
<img src="thumbnail/rsm_thumb.jpg" alt="" width="75" height="60"><br>
<p> Partner Collateral </p>
</div>
<div class="thumbnail">
<img src="thumbnail/navigator_thumb.jpg" alt="" width="75" height="60"><br>
<p>Produced & co-wrote e-Newsletters </p>
</div>
<div class="thumbnail">
<img src="thumbnail/IRSLogo_thumb.jpg" alt="" width="75" height="60"><br>
<p>Produced & wrote e-Newsletter </p>
</div>
<br class="clearboth"> -->
Here is the CSS:
/* .thumbnail
{
float: left;
width: 60px;
border: 1px solid #999;
margin: 0 15px 15px 0;
padding: 5px;
}
.clearboth { clear: both; }
*/