View Full Version : help with title


i'm.unhappy
10-09-2003, 07:51 PM
ok this is my html code

<HTML>
<HEAD.
<title>G.R.E.A.T. is GRRREAT!</title>
<STYLE TYPE="text/css">
body {
background-color: #999999;
text-align: center;
font-family: veranda;
font-size: x-small;
}
a:link {
color: #;cccccc
text-decoration: none;
}
a:hover {
color: #000000;
text-decoration: underline overline, line-through; color: #000000;
}
a:visited {
color: #cccccc;
text-decoration: none;
}
</STYLE>
</HEAD>
<BODY>
<div id="top" style="position:absolute; top: 20px; right: 300px">
<img src="pics/banner1.bmp">
</div>
<div id="greatban" style="position: absolute; top: 20px; right: 649px">
<img src="pics/banner2.bmp">
</div>
<div id="top1" style="position: absolute; top: 148PX; right: 400px;">
<a href="blah.html">
<img src="pics/banner3.bmp">
</a>
</div>
<div id="link" style="position:absolute; top: 160px; right: 480px;">
blah
</div>
<div id="text" style="position: absolute; top:20px; left: 10px;">
<table border="0" width="10">
<tr>
<td>
sadfja;slkjdf ;alskdja; lskdjfa;lskjd flsakd jflkasdasdfas dfasd asfdasdfas dfasd fasdfa
</td>
</tr>
</table>
</div>
</BODY>
</HTML>

can anyone tell me why the title ends up in the body section when i go to the page? instead of having it all the way at the top of the window like above the file edit and view buttons.... somebody tell me whats wrong

Y3llow
10-09-2003, 11:30 PM
Well, at first glance I noticed your <head> tag is wrong, try fixing that and see if it works.

pb&j
10-10-2003, 05:30 AM
<HEAD>

obsideus
10-10-2003, 05:46 AM
<HTML>
<HEAD>
<title>G.R.E.A.T. is GRRREAT!</title>
<STYLE TYPE="text/css">
body {
background-color: #999999;
text-align: center;
font-family: veranda;
font-size: x-small;
}
a:link
{ text-decoration: none; color:#CCCCCC}
a:visited
{ text-decoration: none; color:#000000}
a:hover {
text-decoration: overline underline line-through; color: #CCCCCC; }
</STYLE>
</HEAD>
<BODY>
<div id="top" style="position:absolute; top: 20px; right: 300px"><img src="pics/banner1.bmp">
</div>
<div id="greatban" style="position: absolute; top: 20px; right: 649px"><img src="pics/banner2.bmp">
</div>
<div id="top1" style="position: absolute; top: 148PX; right: 400px;">
<a href="blah.html"><img src="pics/banner3.bmp"></a>
</div>
<div id="link" style="position:absolute; top: 160px; right: 480px;">
<br>blah
</div>
<div id="text" style="position: absolute; top:20px; left: 10px;">
<table border="0" width="10">
<tr>
<td>
sadfja;slkjdf ;alskdja; lskdjfa;lskjd flsakd jflkasdasdfas dfasd asfdasdfas dfasd fasdfa
</td>
</tr>
</table>
</div>
</BODY>
</HTML>

----

I just fixed the <HEAD> part, but I tried to make it look a little neater :)

i'm.unhappy
10-10-2003, 09:36 PM
Originally posted by Y3llow
Well, at first glance I noticed your <head> tag is wrong, try fixing that and see if it works.
hahahahahahahahhahaa i didn't even notice it first glance but any way i fixed the prob...

Y3llow
10-10-2003, 11:10 PM
Heh, glad I could help.