Wednesday, October 3, 2012

What Is HTML?

        HyperText Mark-up Language,most commonly known as HTML,are keywords represented by tags and plain text enclosed in brackets.Basically,they consist of start tag and end tag and a whole lot of keywords that the browsers like Chrome,Internet Explorer,Firefox,etc can read and interpret in order to display them as a web page.


        Depending on the preferences,a web page can be represented by HTML elements for

 Heading are of  six type, from H1 to H6
       
 <h1> </h1>

Heading 1

<h2> </h2>

Heading 2

<h3> </h3>

Heading 3

<h4> </h4>

Heading 4

<h5> </h5>
Heading 5
<h6> </h6>
Heading 6
Paragraphs

           <p> </p>

Tables
           <table>
                <tr>
                      <td></td>
                 </tr>
           </table>

Images
          <img />


Links <a> </a>

Fonts, Colors ,Forms and a lot more.

        HTML  may look very difficult to understand.But it’s basically knowing the elements,the rules,and the idea of where to put those tags to make  a good outcome.