Wednesday, January 25, 2012

Headings

HTML headings are defined with the <h1> to <h6> tags.


<html>
<body>


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


</body>
</html>



view demo : http://www.w3schools.com/html/tryit.asp?filename=tryhtml_headers

HTML - for a beginner


Hello friends, as i told that there are main three core elements required to build any web application HTML is one of them.

QUICK HIGHLIGHTS :

   -HTML stands for Hyper Text Markup Language.
   -HTML is not a programming language, it is a markup language
    A markup language is a set of markup tags.
   -HTML documents are save with ".HTML" or ".HTM." extensions.
 
HOW TO WRITE HTML TAGS : for ex. starting tag <html> and ending </html>

BASIC STRUCTURE :
<html>
<head>
   <title>Name of webpage </title>
</head>
<body>
 
         this part consist of various tags

</body>
 </html>