Saturday, October 9, 2010

HTML Document Structure

An HTML document starts and ends with <html> & </html> tags. These tags tell the browser that the entire document is composed in HTML. Inside these two tags, the document is split into two sections:

    *  The <head>  </head> elements, which contain information about the document such as title of the document,description, keywords, author of the document etc. Information inside this tag does not display outside.
    *  The <body></body> elements, which contain the real content of the document that you see on your screen.

No comments:

Post a Comment