PDA

View Full Version : Untitled document



mrbuds
15th Mar 2003, 09:20 pm
I have created a web site in dreamweaver and have now posted it onto the web. The only problem I have is when you type in the URL the page loads fine but at the top of the browser it says untitled document. Also when you go to add the page to you favorites it also says untitled document. Can someone please help me fix this :?: Thanks for the help

CADTutor
17th Mar 2003, 10:25 am
In the header section of the HTML file <head></head> you should have a title tag <title></title>.

Any text placed between the opening and closing title tags will appear on the browser title bar and will be the default title of the page when you save it as a favourite.

<html>
<head>
<title>This is the tile</title>
</head>

So, the top of the HTML file should look something like the above. Dreamweaver can add the title for you. Right-click on the page background and choose Page Properties... from the menu. The dialogue box has an edit box for adding the title.

mrbuds
17th Mar 2003, 02:20 pm
Thank you for your help. I relized the problem after I wrote in the forum. Thanks for the quick reply!! :D