Total Pageviews

Tuesday, 29 December 2015

Using of Headers in Html

Heading its key important feature when writing and articles,reports,letters or any other text documents .In html language
header tag is a hierarchical   from 1 to 6 with 6 being the smallest and 1 being the bigger in size ,Header text when display its bold.


<html>
           <head>
           <title>My First webpage</title>
           </head>
            <body>
              <p>  I am creating webpage and its interesting and fantastic</p>      

                Header Examples
          <h6>This is a  Header 6</h6>
          <h5>This is a  Header 5</h5>
          <h4>This is a  Header 4</h4>
          <h3>This is a  Header 3</h3>
          <h2>This is a  Header 2</h2>
          <h1>This is a  Header 1</h1>


                                     </body>
                                     </html>


This will be the results of the code .

No comments:

Post a Comment