Basic Tags 1
Here we will discuss the following basic tags.
- Horizontal Lines <hr>
- Bold <b>
- Strong <strong>
- Italic <i>
- Emphasized <emp>
- Small <small>
- Big <big>
Horizontal Lines <hr>
<hr> tag is used to add a horizontal line in the webpage. This tag is also an empty tag, means we don't need to close this tag.
Bold <b>
<b> tag is used for bold text.
It is paired tag, we need to close tag by </b> at the end where we want to stop bold effect.
Strong <strong>
<strong> tag is used for representing bold like effect with more strong semantic in text. It is paired tag, we need to close tag by </strong> at the end where we want to stop strong effect.
Italic <i>
The HTML <i> tag used for italic formatting in text, without any extra importance. It is also a paired tag.
Emphasized <em>
The HTML <em> tag used for italic formatting in text, with any extra importance. It is also a paired tag.
Small <small>
This tag used for representing smaller text. It is a paired tag.
Big <big>
This tag used for representing larger text compared to surrounding text. It is a paired tag.