shuklsadanhtml1

Friday, 7 July 2017

Introduction of HTML



  HTML 

 


  1)  HTML stands hyper text markup language.

  2)  HTML define the various component of a web page.

  3)  HTML describes the structure of Web pages using markup.

  4)  HTML elements are represented by tags.

  5) HTML tags label pieces of content, such as:

     -"heading", "paragraph", "table".

    Note: Browsers do not display the HTML tags, but use them to the content of the page.

EXAMPLE:

   <html>
     <head>
           <title>Page Title</title>
      </head>
       <body>
                 <h1>My First Heading</h1>

                      <h1>My First Heading</h1>
                 <p>My first paragraph.</p>

       </body>
</html>

 

  1) <HTML>    Root element of the html

  2) <head>     meta information about document.

  3) <title>       show the browsing title about the    document.

  4) <body>      visible page content.

  5) <h1>         heading of the page.

  6) <p1>          paragraph write about the page

 

No comments:

Post a Comment