HTML Phrase tag

The HTML phrase tags are special purpose tags, which defines the structural meaning of a block of text or semantics of text. Following is the list of phrase tags, some of which we have already discussed in HTML formatting.

  • Abbreviation tag :
  • Acronym tag: (not supported in HTML5)
  • Marked tag:
  • Strong tag:
  • Emphasized tag :
  • Definition tag:
  • Quoting tag:
  • Short quote tag :
  • Code tag:
  • Keyboard tag:
  • Address tag:

1. Text Abbreviation tag

This tag is used to abbreviate a text. To abbreviate a text, write text between and tag.

Example

Test it Now

Output:

HTML Phrase tag

2. Marked tag:

The content written between and tag will show as yellow mark on browser. This tag is used to highlight a particular text.

Example

Test it Now

Output:

HTML Phrase tag

3. Strong text:

This tag is used to display the important text of the content. The text written between and will be displayed as important text.

Example

Test it Now

Output:

HTML Phrase tag

4. Emphasized text

This tag is used to emphasize the text, and displayed the text in italic form. The text written between and tag will italicized the text.

Example

Test it Now

Output:

HTML Phrase tag

5. Definition tag:

When you use the and tags, it allow to specify the keyword of the content. Following is the example to show how to definition element.

Example

Test it Now

Output:

HTML Phrase tag

6. Quoting text:

The HTML

element shows that the enclosed content is quoted from another source. The Source URL can be given using the cite attribute, and text representation of source can display using ..... element.

Example

Test it Now

Output:

HTML Phrase tag

7. Short Quotations:

An HTML ....... element defines a short quotation. If you will put any content between ....... , then it will enclose the text in double quotes.

Example:

Test it Now

Output:

HTML Phrase tag

8. Code tags

The HTML element is used to display the part of computer code. It will display the content in monospaced font.

Test it Now

Output:

HTML Phrase tag

9. Keyboard Tag

In HTML the keyboard tag, , indicates that a section of content is a user input from keyboard.

Test it Now

Output:

HTML Phrase tag

10. Address tag

An HTML

tag defines the contact information about the author of the content. The content written between
and
tag, then it will be displayed in italic font.
Test it Now

Output:

HTML Phrase tag
Next TopicHTML Anchor




Contact US

Email:[email protected]

HTML Phrase Tags
10/30