HTML Formating
HTML Formatting is the process of adding visual styles and structure to the content of a webpage using HTML tags. HTML formatting tags allow you to control how text and other content is displayed on a webpage. These tags can be used to change the font size, color, and style, add images, create links, and more.
(1) Bold Text
HTML<b> and <strong> formatting elements
<b>Write some text.</b>
<strong>Write some text.</strong>
(2) Italic Text
The HTML <i> element is physical element, which display the enclosed content in italic font.
<i>Write some text.</i>
(3) Underlined Text
Write anything within <u>…………….</u> element, is shown in underlined text.
<u>Write some text.</u>
(4) Strike Text
write text within <strike>…………….</strike> element is displayed with strikethrough.
<strike>Write some text.</strike>
(5) Superscript Text
Write content within <sup>…………</sup> element, is shown in superscript.
<sup>Write some text.</sup>
(6) Subscript Text
Write content within <sub>…………</sub> element, is shown in subscript.
<sub>Write some text.</sub>
(7) Deleted Text
Write content within <del>……….</del> is displayed as deleted text.
<del>Write some text.</del>
(8) Inserted Text
Write content within <ins>……….</ins> is displayed as inserted text.
<ins>Write some text.</ins>
(9) Larger Text
Write content within <big>………</big>. It increase one font size larger than the previous one.
<big>Write some text.</big>
(10) Smaller Text
Write content within <small>………</small>tag. It reduces one font size than the previous one.
<small>Write some text.</small>
Overall, HTML formatting tags are a powerful way to control the appearance and structure of content on a webpage. By using these tags effectively, you can create visually appealing and easy-to-read webpages that engage and inform your audience.