Introduction To HTML
Html is tag based or browser oriented or text based language .HTML stands for hypertext markup language ,here Hyper:- hyper represents the next document . Text:-text is a collection of words (char ,number or special characters) Markup:- it is basically an HTML library where all the tags are defined .(it communicates directly with the browser) Language:- it works as a mediator between a user and computer. .........Html has a tag-based structure......... <H1>this is a heading</H1> Here, the content between the tags is called inner HTML There are basically two types of tags- 1.Open tag(<br>,<hr>,<i>,<b>,<img>) 2.Closed tag (<h1></h1>) Development rules :- 1. Create your own directory. 2. Put all the resources into the directory .the resources can be (Audio,video,image,library,api or other). 3. Don't put spa...