Html
Advertisements
Html Tag
Html Tag HTML tags contain three main parts: opening tag, content and closing tag. But some HTML tags are unclosed tags.
Syntax
<tag> content </tag>
HTML Tag Examples
Note: HTML is not case sensitive language so you can write Html Tags in lowercase or uppercase letters. Some Html tags are given below;
Syntax
<p>Paragraph Tag
</p> <h2>Heading Tag
</h2> <b>Bold Tag</b> <u>Underline Tag</u> <i>Italic Tag </i>
Unclosed Html Tags
Some Html tags are not closed, for example<br>, <hr>, <img> etc.
<br> Tag: br stands for break line, it breaks the line of the code.
<hr> Tag: hr stands for Horizontal Rule. This tag is used to put a line across the webpage.
<img> Tag: img tag are use for display image on web page.
Google Advertisment