Actually, it all looks fine to me.
Although there are some tidbits that could use some cleaning up.
In most of your declarations, you failed to put a semicolon at the very end, right before the closing curly bracket. It's not necessary, but would make the code a little cleaner and up to W3C requirements.
Secondly, in your td, p declarations, you can only choose one color. You have two hexadecimal colors in that same declaration. Remove one.
Also, your <p> with the Welcome line is inside a table. I was not aware you could put paragraphs in tables (though I'm not surprised if you can). Either way, you should put a <TD> leading into it.
So
Code:
<table style="Position:absolute; top:440; left:290;"><ilayer name="scroll1"><br><div id="scroll3"
style="width:210; height:300;
background-color:; FONT-SIZE: 10px;
COLOR:#CCCC99 ; overflow:auto">
Welcome to Dolendae, the Capitol city of Land of Quellefëa. This is the City Hall. From here on, you can explore the world of Quellefëa. Someareas though have not been explored yet, so for your health, you can’t explore them yet.
Should become
Code:
<table style="Position:absolute; top:440; left:290;"><ilayer name="scroll1"><br><div id="scroll3"
style="width:210; height:300;
background-color:; FONT-SIZE: 10px;
COLOR:#CCCC99 ; overflow:auto">
<TD>
Welcome to Dolendae, the Capitol city of Land of Quellefëa. This is the City Hall. From here on, you can explore the world of Quellefëa. Someareas though have not been explored yet, so for your health, you can’t explore them yet.
</TD>
See what I done?
EDIT:
Also, I suggest you visit this site:
http://www.w3schools.com
It's the World Wide Web Consortium's basic reference page, with modifiable examples and the like. It's got a lot of info on CSS and CSS2 coding.