Content of this page
1)Bold Tag
2)Italic Tag
3)Underline Tag
4)Subscript Tag
5) Superscript Tag
Bold Tag
Bold tag is used to Bold or highlight the text ,word or paragraph by adding boldness to it.we can add this by using <b> tag.
<Body>
<b>hello world</b>
</body>
The text between the start and end of Bold tag will become Bold.
Italic Tag
Italic tag is used to tilt the letters in left side by which text look attractive. We use italic tag by <i> and ends up with </i> end tag.
<Body>
<i>hello world</i>
</body>
Underline Tag
Mostly underline tag is used to highlight important texts, this tag is started by <u> and end with </u> end tag
<Body>
<u>hello world</u>
</body>
Subscript Tag
Subscript tag is used in subscript text like (H2O) in this 2 is written in subscript. To make this type of words we use (<sub></sub>) this tag and the letter or number which we want to make small and shift it at bottom, we write that between this tag
Superscript Tag
Superscript tag is used in superscript text like (10²,4³) in this 2 and 4 are written in superscript. To make this type of words we use (<sup></sup>) this tag and the letter or number which we want to make small and shift it at top, we write that between this tag.
Comments
Post a Comment