Monday, 20 October 2014

Learn HTML online for beginners part 5 html abbr tag, text direction and delete and insert tag

HTML abbr tag 


This attribute is used to show the spalled out version when holding the mouse pointer over the abbreviation.

example


<p>the<abbr title="world health organization">WHO</abbr> was founded in 1948.</p>



Text direction


The next line will be written from the right to the left.
<b do dir="rtl">
hello
</bdo>

Output :- olleh

Delected and inserted text


<p> my favourite color is <del>blue</del> <ins>Red</ins></p>

Browsers will strike through deleted text and underline inserted text.

No comments:

Post a Comment