View Full Version : ok no idea whats wrong with my html but its just not working!!


PinkIce
10-27-2003, 03:12 AM
ok i want to have a background image but my code doesnt work, it comes up as a white background heres my code and its not the wonr url of the image either so that cant be the problem

<style type="text/css">
<!--
body
{background-image:url;}
-->
</style>

<center><img

src=url><br><be></center>


<iframe FRAMEBORDER="0" BORDER=0 width=627 height=637 src="main.html" name=main

allowTransparency scrolling=auto style="position:absolute; top:435px;

left:38px"></iframe>

<iframe FRAMEBORDER="0" BORDER=0 width=231 height=637 src="side.html" name=main

allowTransparency scrolling=auto style="position:absolute; top:435px;

left:680px"></iframe>
</center>

bejayel
10-27-2003, 03:48 AM
<html>
<head>
<title>Untitled</title>
</head>
<body background="image.jpg ">
<center><img src="image.jpg "><br><br></center>


<iframe FRAMEBORDER="0" BORDER="0" width="627" height="637" src="main.html" name="main" allowTransparency scrolling="auto" style="position:absolute; top:435px; left:38px"></iframe>

<iframe FRAMEBORDER="0" BORDER="0" width="231" height="637" src="side.html" name="main" allowTransparency scrolling="auto" style="position:absolute; top:435px; left:680px"></iframe>
</center>

</body>
</html>

a word of advice. once you start using quotes in yoru code it is a good idea to continue using them through the rest of your code.

[edit] also you shouldent have lines between yoru code, try to keep each tag together on the same line, it will be less confusing gin the end..