Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which are the standard W3C meta tags?

What are the list of standard meta tags defined in W3C other than the below given at http://www.w3.org/wiki/HTML/Elements/meta

  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta http-equiv="Content-Style-Type" content="text/css" />
  <meta name="copyright" content="© W3C" />
  <meta name="author" lang="en" content="" />
  <meta name="robots" content="Index,Follow" />
  <meta name="description"
        content="The World Wide Web Consortium (W3C) is an international community
        where Member organizations, a full-time staff,
        and the public work together to develop Web standards." />
  <meta name="keyword" content="W3C, HTML, CSS, SVG, Web standards" />
like image 734
fn79 Avatar asked Apr 23 '13 14:04

fn79


People also ask

How many types of meta tags are there?

The 8 meta tags for SEO in this article are ones that will help you rank better, as long as you use them correctly. Think of meta tags as a way to give both human users and Google a better idea of what your website is about. The more you use meta tags for SEO strategy, the more value you'll provide.

What are the meta tags in HTML?

The <meta> tag defines metadata about an HTML document. Metadata is data (information) about data. <meta> tags always go inside the <head> element, and are typically used to specify character set, page description, keywords, author of the document, and viewport settings.


1 Answers

HTML5

You can only use the following values in HTML5. If you need a value not listed, you’d have to register it first.

name values

  • Standard metadata names (defined in the HTML5 spec)
  • MetaExtensions (registered in the WHATWG wiki according to the HTML5 spec)

http-equiv values

  • Pragma directives (defined in the HTML5 spec)
  • PragmaExtensions (registered in the WHATWG wiki according to the HTML5 spec)

HTML 4.01

In HTML 4.01 there is no registry defined, so you can use whatever values you like. See http://www.w3.org/TR/html401/struct/global.html#h-7.4.4:

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

The spec gives some examples for name values, like:

  • author
  • keywords
  • description
  • copyright
  • date
  • ROBOTS

And for http-equiv values, like:

  • Expires
  • PICS-Label
  • Content-Type
like image 80
unor Avatar answered Sep 30 '22 17:09

unor