Html is short form for hypertext mark up language; it is based on the use of tags. By using these tags you can create static WebPages and forms in html. If you want to add some functionality to your WebPages created in html you can add code from any server side language like PHP, JSP, and ASP etc. In html tags are everything; here on this site we are going to discuss some very common tags available in html. First of all we need to know how to use a tag in HTML. We can start a tag by enclosing tag inside lesser than and greater than signs:
<html>
Above statement shows the start of html tag. Similarly we can close tag by placing a slash next to lesser than sign:
</html>
Html is not case sensitive hence <html> and <HTML> has same meaning so you not need to worry about that.
Practically tags are available for almost everything including page layout, search engine directives, text formatting, images, third party scripts and many more. All these tags will be discussed in the further tutorials at girendra.com. In these tutorials if you feel that you have doubt on anything you are welcome to ask me about that; leave your comment here I will try my best to clear your doubts.




