Click to See Complete Forum and Search --> : Untitled Document


daniish
03-04-2007, 12:58 PM
Hello,

For some reason my website (www.norwichknights.com) displays "Untitled Document" on my Firefox tab, even though each html page has a distinct <title></title>.

Could someone please take a look at the source code on the site and tell me whats wrong?


Many thanks
Olly

davidmal
03-04-2007, 01:54 PM
Looks like your domain redirects to www.nnkorf.globexposure.net/index.html via an asp.net transfer which by default has "Untitled Document" as the title and does not necessarily change when redirected.
I would contact your domain registrar (limitless.aaisp.net.uk?) for the fix. I don't beleve there is anything you can do on your end.

Major Payne
03-14-2007, 12:06 AM
If I load only your frame page the title is displayed which appears on it:

<TITLE>Norwich Knights |||||||||||||||||||||||||||||||||||||||||</TITLE>

This what you are using in the main frame page:

<title>Untitled Document</title>

So that is what shows up.

Ron

daniish
03-14-2007, 08:16 PM
My website site is comprised of 6 html files and all of them begin as follows:


<HTML>
<HEAD>
<TITLE>Norwich Knights |||||||||||||||||||||||||||||||||||||||||</TITLE>


<link rel="stylesheet" type="text/css" href="default.css">

<style type="text/css">
<!--
.style1 {font-size: 12px}
.style2 {font-size: 10px}
.style3 {font-family: Verdana, Arial, Helvetica, sans-serif}
.style4 {font-size: 16px}
.style5 {font-weight: bold}
-->
</style>
</HEAD>


So i just don't understand where the <title> is that needs changing - any clues?

daniish
03-14-2007, 08:18 PM
Oops i think Davidmal has the right idea...Cheers mate :)

Major Payne
03-15-2007, 03:26 PM
Hi:

I looked at your code and it is not a redirect per se. One page uses one path and the frame page uses another.

HTML Validation Result
----------------------
http://www.norwichknights.com/

line 13 column 12 - Warning: discarding unexpected </html>
line 8 column 1 - Warning: missing </frameset>

0 errors / 2 warnings

http://www.nnkorf.globexposure.net/index.html

line 16 column 1 - Warning: missing <!DOCTYPE> declaration
line 65 column 50 - Warning: unescaped & which should be written as &amp;
line 111 column 21 - Warning: missing </span> before </p>
line 113 column 21 - Warning: missing </span> before </p>
line 37 column 1 - Warning: <body> attribute "bgcolor" had invalid value "ffffff" and has been replaced
line 37 column 1 - Warning: <body> proprietary attribute "topmargin"
line 37 column 1 - Warning: <body> proprietary attribute "leftmargin"
line 37 column 1 - Warning: <body> proprietary attribute "marginheight"
line 37 column 1 - Warning: <body> proprietary attribute "marginwidth"
line 44 column 30 - Warning: <img> lacks "alt" attribute
line 45 column 30 - Warning: <img> lacks "alt" attribute
line 50 column 18 - Warning: <img> lacks "alt" attribute
line 90 column 20 - Warning: <img> lacks "alt" attribute
line 102 column 22 - Warning: <img> lacks "alt" attribute
line 124 column 36 - Warning: <a> attribute "href" lacks value
line 124 column 47 - Warning: <img> lacks "alt" attribute
line 132 column 6 - Warning: <img> lacks "alt" attribute
line 143 column 22 - Warning: <img> lacks "alt" attribute
line 155 column 5 - Warning: <img> lacks "alt" attribute
line 52 column 1 - Warning: trimming empty <p>
line 128 column 2 - Warning: trimming empty <p>

0 errors / 21 warnings

Each has a differ title between the <title> tags. Your frame page is what is showing what you see:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<frameset rows="*,1">
<frame src="http://www.nnkorf.globexposure.net/index.html" name="mainFrame" id="mainFrame" title="mainFrame" />

<noframes><body>
</body>
</noframes></html>

Ron