1- dont open body tag before closing head,
2- dont write meta tag after opening body
3- dont open second body while you already have opened once
4- dont upload your background images in any other hosting service
you have a lot of mistakes, you should study html and css little bit before starting to make a website for yourself, but still so good work for a person who is 12 years old
here is the right code, use below one
Code:
<HTML><HEAD>
<style>
body {
background: url(http://img174.imageshack.us/img174/3904/layout4ii0.png) top left no-repeat;
margin: 0;
padding: 0;
}
#header {
position: relative;
left:240px;
top:100px;
height: 340px;
width: 260px;
text-align: left;
padding: 5px;
overflow: scroll;
color: #fff;
font: 0.75em verdana;
}
</style>
</HEAD>
<BODY>
<div id="header">
this is a text message
</div>
</BODY></HTML>