Ads

Breaking

Thursday, July 16, 2020

Basic HTML tags ?

What HTML is you must have understood that with the introduction of html . In this article I will share detailed information about the basic HTML tag . HTML tags are basically paired tags which means that if you have used any of the open tag e.g. <head> then you must have to close that tag and to close the tag you should use backward slash "/" inside the angular bracket "<>" e.g. </head> .

In this scripting language the basic tags are as follows :-

1:- <html> :- To make a webpage using this scripting language . HTML is the root tag which specify that the document is HTML document .

And as in the introduction of HTML I already told that as in human body there is HEAD and Body . In HTML it is same , with the name there is two section First if HEAD section and the second one is BODY section and hence the tag <head> , <body>.

2. <head> :- Head tag is used for all the head element in the HTML file . and you can describe all the libraries which you are going to use e.g. java script , css , etc .

3. <title> :- This tag is used to write the title of your document which you want to get shown in the tab section of users browser . As shown in the image below .


4. <body> :- This tag is used to define the body of a html file .Anything that you want to get shown in the main browser area of the user should write in this tag e.g. to add image , video , background colour , article , etc .

Pratical demonstration is shown in the video :-



Read this also :-




No comments:

Post a Comment