Pages

Saturday, 26 April 2014

Introduction to HTML

Welcome to hyper text markup language....
Let us know some facts about html

  • It has 2 parts, 1 is head and the other one is body.
  • Now a days html5 is the latest version.
  • It contains html tags
  • every tag has its ending tag
  • This is not a programming language but a markup language
  • The alternate name is web pages
  • The tags must be not in capital letters

Tag structure is like this
 <tag> What ever you want to display just type here </tag>

The basic example for html 5 is
<!DOCTYPE html>
<html> 
   <head>
      <title>   Welcome to www.w33schools.com  </title>
   </head>
    <body>
         Welcome to w33schools
    </body>
</html>