Saturday 28 September 2013

HTML Body Tag


The body tag is used to identify the beginning of the main portion of your web page. All of the web page will be designed between the opening and closing body tag.
Between these two tags you will place all images, image maps, links, text, paragraphs, and forms. In the following example, I have placed one paragraph of text between the body tags.

<html>
     <head>
          <title>This is the Title of my Web Page</title>
     </head>
    
<body>
          Programming Dost is one of the very fastly growing online tutorials blog. In this blog you will find HTML Tutorials, JavaScript Tutorials and tutorials of many programming languages.
    
</body>
</html>

No comments:

Post a Comment