View Full Version : my div tags do not work :(


alcaseltzerboy
03-11-2003, 08:39 PM
i am not sure what i am doing wrong, but lately, my div tags having been working

here is a sample of my coding. and yes, short urls work on my server.


<html>
<head>
<title><---FBI SECRETS & CIA OFFICIAL WEBSITE---></title>
</head>
<body bgcolor="#000000">
<center><img src="img/H_T_bigpic.gif">

<!-- div tag start -->


<!-- div tag end -->

</body></html>


<div style=" top: 225px; left:210px;"><img src="img/roll_ht.gif" name="roll_1" onmouseover="document.roll_1.src='img/roll_ht1.gif';"></div>
<!-- div tag end -->

</body></html>



please respond :)

epolady
03-11-2003, 09:11 PM
<div style="position: absolute; top: 225px; left:210px;"><img src="img/roll_ht.gif" name="roll_1" onmouseover="document.roll_1.src='img/roll_ht1.gif';"></div>

MaGiCSuN
03-12-2003, 07:00 PM
also you have two </body> tags. this code is completely good haha:

<html>
<head>
<title><---FBI SECRETS & CIA OFFICIAL WEBSITE---></title>
</head>
<body bgcolor="#000000">
<center><img src="img/H_T_bigpic.gif">

<!-- div tag start -->

<div style="position: absolute; top: 225px; left:210px;"><img src="img/roll_ht.gif" name="roll_1" onmouseover="document.roll_1.src='img/roll_ht1.gif';"></div>
<!-- div tag end -->

</body></html>