Wednesday, May 7, 2014

HTML BASICS

HTML BASICS

Every Web page is basically a HTML page with various other technologies embedded in it to make it more dynamic.and attracting.

 HTML STRUCTURE  

HTML is a case-insensitive language so you can use both upper and lower case   letters.

Every HTML page starts with a <HTML> tag and end with </HTML> tag

<HTML>
  
<HEAD>[head tag is optional provides details to the browser]

<TITLE>title of your web page displayed by your browser </TITLE>
</HEAD>

<BODY>

The Content to be displayed in your web page 

</BODY>

 
</HTML> [End of Your Html Document]



HTML PAGE EXTENSIONS

.html/.htm - Extension for basic html document.
.xhtml       -  Html + Xml
.dhtml       -  Dynamic Html

Depending upon other Language used inside your basic html document Extensions can changed like(.php..jsp.asp.net,.js etc)


No comments:

Post a Comment