Posts

Showing posts from June, 2014

HTML TAG

Today i introduction you to html tag  1.<html> this is html starting tag </html> this is close tag. Every tag end of </> like as <a>start and </a> end 2. <head> all discription gose to here like as <title> <linking><meta> etc 3.<body> it is very important tag of html All style of html write here. ======================== Practice code <html> <head> <title>this is site title</title> </head> <body> this is all site content </body> </html>