Saturday, September 10, 2011

HTML Introdution


HTML Introduction




HTML is HyperText Markup Language, which always use when we create web pages. HTML enables you to create the structured, formatted and linked web pages in a website. You can also create navigational elements in a web page using HTML, which helps to navigate from one page to another page. Many HTML authoring tools available that enables you to create, format and echance a web page.

  • HTML's full form or it stands for HyperText Markup Language
  • Markup Language always called a set of Markup Tags
  • HTML is not a Programming Language, it's only a Markup Language







Example:

<html>
<body>
Welcome in HTML World
 <p>Welcome to My First Page</p>
<p><h1>Welcome to My Tutorials</h1></p>
</body>
</html>



Output:

Welcome in HTML World
Welcome to My First Page
Welcome to My Tutorials













Explanation of HTML Example:

  • Text You show in between <html> and </html> explain about the WEB PAGE that your total designing comes under the these tags. <html> is open tag and </html> is close tag. We always use / to close our any tag. It's very must.
  • Text You show in between <body> and </body> explain about your VISIBLE CONTENT which you can see in your webpage. <body> is open tag and </body> is close tag. We always use / to close our any tag. It's very must.
  • Text You show in between <p> and </p> explain about the PARAGRAPH which means that, there is a break in the current paragraph and a new paragraph begains from here. <p> tag is container tag.
  • Text You show in between <h1> and </h1> explain the HEADING, which specifies the font, paragraph breaks before and after the heading, and a white space necessary to show the heading.


help us to grow

Post a Comment