The basics of HTML
     There are 3 major parts of a HTML file: <HTML>,<HEAD> and <BODY>
There are the Basic Pattern of a HTML file
<HTML>
<HEAD>
....................(This part hold the decriptive information of the web page)
</HEAD>
<BODY>
....................
....................(This part hold all the content of web page)
....................
</BODY>
</HTML>
     When the beginning of writing the HTML file,the above things must be written.