Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

what are these metatags? 1

Status
Not open for further replies.

genevieve2005

Technical User
Jan 9, 2005
11
CA
Hi

I am trying to get some hits to my webpage, and read somewhere that if "document type" metatags are not in there, that the search engines will get confused and won't list a site adequately.

What are these metatags? Are they document type tags?
If they are not, are they necessary in each and every webpage? I had taken them out because I did not think they were necessary in a webpage.

<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">


Thanks!


Cyberspace Services
Your one-stop shop for help with all your overflow office work
 
The importance of DOCTYPEs is that they can put browsers into "standards" mode, making it easier to make sites look the same with different browsers. Read more at
I don't think search engines care about DOCTYPEs. If Google cared about them, they'd declare one on their own site! Declaring one does go hand-in-hand with validating your site. Valid (X)HTML can make life easier for SE spiders, at least making it less likely you'll inadvertantly confuse them.

As far as meta tags go, this one probably is necessary:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
but nobody's going to take you seriously with these:
Code:
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">

-- Chris Hunt
Webmaster & Tragedian
Extra Connections Ltd
 
Thank you for replying............:)

So this one: <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
where should I put it? Above all the other metatags (ie: description & keywords, title) or below them?

Thanks!

Cyberspace Services
Your one-stop shop for help with all your overflow office work
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top