Friday, January 10, 2014

Learn HTML (Make Your Own Static Web Page)


What is HTML?
HTML stands for Hyper Text Markup Language is a  pure markup language which is used to develop static pages on the web.It's not a programming language and also it's not case sensitive language.HTML is a widely used markup language.
HTML Main Syntax:
<HTML> Starting Tag of HTML

  <HEAD>

     <TITLE>In the title tag we write title of the website which is shown on the web browser tab</TITLE>
  </HEAD>
  <BODY>
                                       <!--  HTML Comments    -->
                                          MY First Page IN HTML
   In The Body of HTML we can make header footer content of the website or a webpage.We use HTML      tag i.e <h1>For Heading</h1><p> For Paragraph </p> <li> For listing </li> etc.
  </BODY>

</HTML>Ending Tag of HTML


HTML syntax is like human body first head then body.Head tells body to perform.We save HTML file with .HTML or .HTM extensions eg compinfotechnology.html or compinfotechnology.htm.This is all about making a Simple HTML Page.

2 comments: