The main problem was that you hadn't closed your body tag:
Code:
<BODY BGCOLOR="white" <div id="FrogJS">
But there were some other issues, missing </a> tags, the use of /> for images - not allowed in this type of document, missing meta information, too many style sections, use of the antiquated bgcolor attribute. I'm not sure what you are going for or why you need absolute positioning or those weird id's and that empty division. Assuming you need all that, this looks fairly nice:
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title>Home</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
p {
margin-top:0;
}
body {
background-color:white;
}
a:link { text-decoration:none; color: blue;}
a:visited { text-decoration:none; color: blue;}
a:hover { text-decoration:underline; color: red;}
#FrogJS{
width: 460px;
height:760px;
margin: 0 auto;
}
#FrogJSCredit{
text-align: center;
font-size: 80%;
color: #999;
padding: 1px;
}
#FrogJSCaption{
text-align: left;
line-height:140%;
}
</style>
<script type="text/javascript" src="prototype.js"></script>
<script type="text/javascript" src="scriptaculous.js?load=effects"></script>
<script type="text/javascript" src="frog.js"></script>
</head>
<body>
<div style="position:relative;height:160px;width:789px;margin:0 auto;">
<div id="HTMOBJ7D774C1351B3E0" style=" position:absolute; top:413px; left:354px; width:104px; height:150px; z-index:0;">
</div>
<div id="SGROBJ7D7719A191510" style=" position:absolute; top:0px; left:0px; width:789px; height:160px; z-index:1;">
<img src="Home/IMAG000.JPG" width="789" height="160" border="0" alt="">
</div>
</div>
<div id="FrogJS">
<a href="RTC100.jpg" title="Test1">
<img src="TRTC100.jpg" alt="Exquisite Jewelry.">
</a>
<a href="RTC200.jpg" title="Test2">
<img src="TRTC200.jpg" alt="Stylish and Affordable.">
</a>
<a href="RTC400.jpg" title="Test3">
<img src="TRTC400.jpg" alt="Elegantly Stylish.">
</a>
<a href="RTC500.jpg" title="Test4">
<img src="TRTC500.jpg" alt="Stylish and Affordable.">
</a>
<a href="RTC600.jpg" title="Test5">
<img src="TRTC600.jpg" alt="One in town.">
</a>
<a href="RTC700.jpg" title="Test6">
<img src="TRTC700.jpg" alt="Girl's best friend.">
</a>
<a href="RTC800.jpg" title="Test7">
<img src="TRTC800.jpg" alt="A piece of jewelry that you can't afford to miss.">
</a>
<a href="RTC900.jpg" title="Test8">
<img src="TRTC900.jpg" alt="Sensational look.">
</a>
<a href="RTC1000.jpg" title="Test9">
<img src="TRTC1000.jpg" alt="Stylish and Affordable.">
</a>
<a href="RTC1100.jpg" title="Test10">
<img src="TRTC1100.jpg" alt="Adorable.">
</a>
<a href="RTC100.jpg" title="Exquisite Jewelry">
<img src="TRTC1100.jpg" alt="Stylish and Affordable.">
</a>
</div>
</body>
</html>
Bookmarks