Forum Moderators: open

Message Too Old, No Replies

Title tag

Just read an article about .....

         

WebMan61

9:39 pm on Feb 4, 2003 (gmt 0)

10+ Year Member



I have just read an article saying you should put your title tag after the head tag. What do you guys and gals have to say about it. I am always looking for good books on search engine positioning if any one has any they recommend.
Thanks

Mohamed_E

10:30 pm on Feb 4, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



> I have just read an article saying you should put your title tag after the head tag.

I am not quite sure what you mean. It goes between the <head> and </head> tags:

<!DOCTYPE ...>
<head>
<title>My Wonderful Page</title>
<meta whatever ...>
</head>
<body>
...
</body>

WebMan61

11:01 pm on Feb 4, 2003 (gmt 0)

10+ Year Member



yes that is want i ment right after the <head> tag and before the meta tag. Thanks

HitProf

12:13 am on Feb 6, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I always put the title tag as high as possible.

g1smd

3:04 pm on Feb 23, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



[Duplicate Post]

[edited by: g1smd at 3:05 pm (utc) on Feb. 23, 2003]

g1smd

3:04 pm on Feb 23, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I use this order:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>

<title> Your Title Here </title>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="EN-GB">

<meta name="Description" content=" Your Description Here. ">
<meta name="Keywords" content=" your, keyword, list, here ">

<meta name="MSSmartTagsPreventParsing" content="TRUE">

<link href="style.css" rel="stylesheet" type="text/css">
<script type="text/javascript" language="JavaScript" src="jsscript.js"></script>

<style type="text/css">
<!--
style code here
-->
</style>

<script type="text/javascript" language="Javascript">
<!--
javascript code here
// -->
</script>

</head>

<body>

etc

</body>

</html>