Recent Posts
recent

HTML Comman Tags

  1. <html>................</html>    => Html Document
  2. <head>...............</head>   => Head Part
  3. <body>................</body>  => Body Part
  4. <title>...................<title>     => Title of the HTML Document.

Attributes of <body> Tag:

  1. bgcolor = .......................... => Back Ground Color.
  2. text = ................................. => Text Color.
  3. background = ................. => Back Ground Image.
  4. leftmargin = ......................
  5. topmargin = ......................
  6. title = ................................. =>Tool Tip Text.

Example 1:

            <html>
            <head>
            <title> My Web Page </title>
            </head>
            <body bgcolor=green text=yellow leftmargin=100 topmargin=100 
                     title="This is My First Web Page">
             WELCOME TO HTML
            </body>
            </html>

Example 2:  For Back Ground Image.

            <html>
            <head>
            <title> My Web Page </title>
            </head>
            <body background="C:/a.gif (address of the image)" topmargin=80>
             WELCOME TO HTML
            </body>
            </html>

Heading Tags:

5.   <h1>.........................</h1>=> Level1 Heading
6.     <h2>.........................</h2>=> Level1 Heading
7.     <h3>.........................</h3>=> Level1 Heading
8.     <h4>.........................</h4>=> Level1 Heading
9.     <h5>.........................</h5>=> Level1 Heading
10.   <h6>.........................</h6>=> Level1 Heading

Example for Heading Tags:

             <html>
              <body>
              <h1>http://worldofprogramminglang.blogspot.com</h1>
              <h2>http://worldofprogramminglang.blogspot.com</h2>
              <h3>http://worldofprogramminglang.blogspot.com</h3>
              <h4>http://worldofprogramminglang.blogspot.com</h4>
              <h5>http://worldofprogramminglang.blogspot.com</h5>
              <h6>http://worldofprogramminglang.blogspot.com</h6>
              </body>
              </html>
Unknown

Unknown

No comments:

Post a Comment

Powered by Blogger.