We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Add Reply
<meta name=> tags
Topic Started: Mar 4 2005, 08:03 PM (501 Views)
doom89
Member Avatar
Member
[ *  * ]
What is the whole purpose of <meta name=> tags?
Offline Profile Quote Post Goto Top
 
Jory
Member Avatar
Member
[ *  *  *  *  *  * ]
google it.
(i'm getting more then enough sites, in lots of different languages)

this should help you


Offline Profile Quote Post Goto Top
 
EvilSteve
Member
[ * ]

Technically, meta just means "additional data about a webpage." There's different purposes for a meta tag depending on its attributes. The most common uses for meta tags are probably:


To give your webpage a description

Code:
 
<meta name="Description" content="This is a description of my webpage">


Some search engines might use this description when indexing your page, and some browsers store this description when you bookmark a page.


To associate keywords with your webpage

Code:
 
<meta name="Keywords" content="webpage, html, http, meta, tag">


Some search engines may take these keywords into account when someone searches for your page.


To perform a client-side redirect

Code:
 
<meta http-equiv="refresh" content="3;url=http://www.mysite.com/OtherPage.html">


This will make the browser load "OtherPage.html" after a 3 second delay.
Offline Profile Quote Post Goto Top
 
mathiaus
Member Avatar
mathiaus maximus™
[ *  *  *  *  *  * ]
Most of them are for improving your sites position in search engines such as google. They also provide special effects such as the redirection and page trasitions!
Offline Profile Quote Post Goto Top
 
Jack O'Neil
Unregistered

You could pretty much use any meta tag right? I mean:

<meta name="Hoo" content="Ha">

Isn't wrong....is it?
Quote Post Goto Top
 
EvilSteve
Member
[ * ]

Yeah, I guess you could do that. According to the HTML specs, I think you're free to add your own types of meta data if you choose:

Quote:
 
This specification does not define a set of legal meta data properties.

Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Technology Chat · Next Topic »
Add Reply