HTML Phrase Tags
HTML Phrase Tags
This are element that are use to make special presentation and declaration. They are mostly italizied or bolded.
Emphasized Text
This element is used to make emphasized on text.The are content placed between opening and closing tags of <em> and </em>.
<p> The following word uses an <em>emphasized</em> typeface. <p>
Marked Text
A mark element <mark> </mark> is used to highlight text. It is usually in yellow ink.
<p> The following word has been marked with yellow <mark>marked</mark> typeface. <p>
Strong Text
Using <strong></strong> element,we can bold text to indicated the importance of the text.
<p> The following word uses a <strong>marked</strong> typeface. <p>
Text Abbreviation
You can abbreviate a text by putting it inside opening <abbr> and closing </abbr> tags. If present, the title attribute must contain this full description and nothing else.
<p> Our Community name is <abbr title = "Datikvah World Community">DWC</abbr><p>
Text Direction
The <bdo>...</bdo> element stands for Bi-Directional Override and it is used to override the current text direction
<p> <bdo dir = "rtl">This text will go right to left.</bdo></<p>
Short Quotations
The <q>...</q> element is used when you want to add a double quote within a sentence.
<p> Say It Again, <q>We change The world together </q> <p>
Example
The phrase tags stated above are written below.
<p> The following word uses an <em>emphasized</em> typeface. <p>
<p> The following word has been marked with yellow <mark>marked</mark> typeface. <p>
<p> The following word uses a <strong>marked</strong> typeface. <p>
<p> Our Community name is <abbr title = "Datikvah World Community">DWC</abbr><p>
<p> <bdo dir = "rtl">This text will go right to left.</bdo></<p>
<p> Say It Again, <q>We change The world together </q> <p>