HTML

1. HTML

HTML Stands for Hyper Text Markup Language.
  • <HTML> tag is the root  element of an html page.
  •      It is not a case sensitive language.
  •      Html elements are the building blocks of html pages.
  •      It describe about the structure of web pages.
  •      By using html we can create Both static and dynamic web pages.
  •      It contains headings,paragraphs,buttons,labels and so on.

2. BASICS

  • The HTML document itself begins with <html> and ends with </html>
  • In html we have 2 types of tags.
    • Paired tag         EX:<p>content</p>
    • Singleton  Tag  EX:<br>

  • The visible part of the HTML document is between <body> and </body>
Basic tags:
<title>:Title tag used to give title which is displayed in the browser
<h1> - <h6>:These are heading tags
<p>:This is  paragraph tag.

Basic Program:
      <html>
         <head>
               <title>Basic Html  program</title>
         </head>
          <body>
                   <h1>This is heading</h1
.                   <p>This is paragraph</p>
          </body>
      </html>