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
No comments:
Post a Comment