Bold Italic and Underline in HTML
Bold Italic and Underline in HTML
The character formatting tags are used to specify how a particular text should be displayed on the screen to distinguish certain characters within the document.
Boldface <B>: displays text in BOLD
Example:
Welcome to the <B> Internet World </B>
Output:
Welcome to the Internet World
Italics <I>: displays text in Italic
Example:
Welcome to the <I> Internet World </I>
Output:
Welcome to the Internet World
Underline <u> : display text in underline
Example:
Welcome to the <u> Internet World </u>
Output:
Welcome to the Internet World