#tag
- 1. An HTML tag is a keyword surrounded by angle brackets, < and >.
- 2. They are used to mark up the content of a web page, and to specify how the content should be displayed in a web browser.
- 3. Every tag in HTML perform specific tasks.
- 4. Example :
<html> : it means it is starting of Html tag. </html> : Here , '/' means it is ending of Html tag. - 5. The <html> tag represents the root of an HTML document.
#We have two types of tags
1. Container Tag (Paired tag)
- 1. Those tags we have to close , we call them Container tag.
- 2. Example : < html > </html> , <head></head>, <body> </body>, etc.
2. Non Container tag
- 1. Non Container tags are knows as void tag , empty tag and singleton tag because they don't have cloasing tag , so we cannot put content in between tag
- 2. Those tags we need not to close , we call them non Container tag
- 3. Example : <br>,<img> , <input> , etc.