You are on page 1of 6

Grade 6:Computer Science

Topic: Formatting Elements,Hyperlink and Images


HTML FORMATTING ELEMENTS

Formatting elements are designed to display special


types of text :

 <u> - underline text


 <b> - Bold text
 <strong> - Important text
 <i> - Italic text
HTML ELEMENT - BOLD

The HTML <b> element defines bold text, without


any extra importance.
Example
<b>This text is bold</b>
HTML ELEMENT - ITALIC

The HTML <i> element defines italic text, without any


extra importance.
Example
<i>This text is italic</i>
HTML ELEMENT - UNDERLINE

The HTML <u> element defines underlined text,


without any extra importance.
Example
Underline a misspelled word with the <u> tag:
<p>This is a <u>paragraph</u> </p>
HTML ELEMENT - STRONG

The HTML <strong> element defines strong text,


with added semantic "strong" importance.
Example
<strong>This text is strong</strong>

You might also like