<dfn> HTML Tag

In this article I will discuss the dfn tag of HTML.
  • 2453

The HTML dfn tag is used for indicating a definition. The dfn tag surrounds the word/term being defined.

Example

<html>

<head>

    <title></title>

</head>

<body>

    <p>

        <dfn>Question 1:</dfn><br />

        What do you mean by HTML?<br />

        <dfn>Answer:</dfn></br> HTML is a hypertext markup language that is used to make

        the web pages.<br />

    </p>

    <p>

        <dfn>Question 2:</dfn><br />

        What is &lt;dfn&gt;tag in HTML?<br />

        <dfn>Answer:</dfn><br />

        The HTML dfn tag is used for indicating a definition.<br />

    </p>

    <p>

        <dfn>Question 3:</dfn><br />

        What do you mean by Array?<br />

        <dfn>Answer:</dfn><br />

        Array is a continuous block of memory, that can store similar type of data.</p>

</body>

</html> 


Output

Question 1:
What do you mean by HTML?
Answer:
HTML is a hypertext markup language that is used to make the web pages.

Question 2:

What is <dfn>tag in HTML?
Answer:
The HTML dfn tag is used for indicating a definition.

Question 3:
What do you mean by Array?
Answer:
Array is a continuous block of memory, that can store similar type of data.

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 
© 2020 DotNetHeaven. All rights reserved.