HTML: Ins and del tag

The <ins> ….. </ins> tag can be used to show content that has been inserted into a document, while the <del> ….. </del> tag can show text that has been deleted from it.

Tagged : / / / / / / /

HTML: Abbreviation and Acronym

The <abbr> ……… </abbr> tag defines an abbreviation or an acronym. A title attribute on the opening tag is used to specify the full term.

<abbr title=”google”>g</abbr>is awesome.

Tagged : / / / /

HTML: Blockquote & q tag

Blockquote:

The <blockquote> …………… </blockquote> is used for long and multiline quotations.

q:

The <q> ………………… </q> element is used for shorter quotes that sit within a paragraph.

Tagged : / / / /

HTML: Strong & Emphasis tag

Strong tag:

The <strong> ……………….. </strong> tag indicates that its content has strong importance.

Emphasis:

The <em> ………………… </em> indicates emphasis that subtly changes the meaning of a sentence.

Tagged : / / / / /