You can get multiple information about programing.

How to use the DFN and abbreviation tag in html? - Programming info

How to use the DFN and abbreviation tag in html?

 
What is DFN AND ABBR tag? Why  and how DFN TAG  AND ABBR TAG is used in html?


DFN and abbreviation tag


What is DFN tag?

DFN tag is the definition about the elements. Its always in italic words.

 Why DFN TAG is used in html? 

DFN tag gives information about the special words. Such as ROM stands for Read Only Memory. Its means read only memory is the information about ROM .For the sake of reader convenience ,We cannot write the whole information about words, We used the shortcut ways as ROM instead of READ ONLY MEMORY. But when we click on these words or element, definition about the element are given. Below paragraph about ROM is given. When you click on the ROM elements. Information about the ROM you gets.
ROM, is a type of computer storage containing non-volatile, permanent data that, normally, can only be read, not written to

How to use DFN tag in html? lets see practice.

<html>
<head>
<title>
DFN and ABBR TAG IN HTML
</title>
<body>
<p>

 <dfn title="read only memory">ROM</dfn>, is a type of computer storage containing non-volatile, permanent data that, normally, can only be read, not written to. ROM contains the programming that allows a computer to start up or regenerate each time it is turned on. ROM also performs large input/output (I/O) tasks and protects programs or software instructions. Once data is written on a ROM chip, it cannot be removed.

</p>
How to use the abbreviation tag. ?
<p>
 <ABBR TITLE="PORTABLE DOCUMENT FILE">PDF</ABBR> versatile file format created by Adobe that gives people an easy, reliable way to present and exchange documents - regardless of the software, hardware.
</P>
</BODY>
</HTML>

NOTE: 

  • DFN TAG give the information or full form about any words or sentence. Its in italic words.
  • ABBR TAG is the abbreviation of any words. Its in underline words.





Next Post Previous Post