Thursday, 27 June 2013

HEAD TAG

(2) HEAD TAG

The second second structure tag is know as the Head Tag and it is written as <head>. This tag is used to represent the properties of the whole document such as the title, links etc. Once again this tag has no effect on the preview of the web contents. If you leave this tag in your file then no error will show neither any kind of problem will show in the preview of the web.
Here are some important elements which a head tag followed.
  • BASE: Records the original version of the document
  • ISINDEX: Marks the document as searchable. For this the server on which your file loaded must have a search engine.
  • NAME: Name this link as a possible destination for another hypertext document.
  • LINK: Define a relationship between the document and the other parts of the document.It will show a tree structure of the document and it has the same attributes as the <A> anchor tag has.
  • URN: Indicates the uniform name of the document.
Simple code of your file having this tag will be as under:


<html>
<head>


</html>
</head>


1 comment: