show-notice
hide-notice

Friday 9 August 2013

HTML meta Tag


Introduction:

The HTML meta tag is used for declaring metadata for the HTML document.
Metadata can include document decription, keywords, author etc. It can also be used to refresh the page or set cookies.The meta tag is placed between the opening and closing <head> tags.

Example:
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>HTML meta tag</title>
  <meta name="keywords"
    content="HTML, meta tag, metadata" />
  <meta name="description"
    content="HTML tag for declaring metadata for the HTML document" />
  <meta http-equiv="refresh" content="10" />
</head>
<body style="background-color:orange">
Document content goes here
</body>
</html>

SHARE THIS POST   

0 comments :

Post a Comment

Design by Gohilinfotech | www.gohilinfotech.blogspot.com