DFN HTML

HTML <dfn> Tag The HTML <dfn> tag represents the HTML definition tag. The content of the HTML <dfn> tag is a term whose definition is understood to be the nearby text by the browser. Syntax: <dfn>Content</dfn> Example: <!DOCTYPE html> <html> <body> <p><dfn>Apple</dfn> is a fruit.</p> </body> </html> Explanation: In the above example, we are using … Read more

Del HTML

HTML <del> Tag To specify the deleted/removed text in a document, the HTML <del> tag is used. Thus, it acts as a Markup for the deleted text by striking a line through the deleted text. The default markup can be changed using the CSS property. The HTML <ins> tag is often used with the <del> … Read more

DD HTML

HTML <dd> Tag HTML <dd> tag represents the Description List or Definition List. As the name itself suggests, it is used to display elements in definition form. It thus works much like a dictionary. To define the description list three tags are used. These are: <dl> tag: Used to define the description list. <dt> tag: Used to … Read more

Data HTML

HTML <data> Tag To provide a machine-readable version of the specified content, the HTML <data> tag is used. The data is displayed in a special format. It is useful both for getting a machine-readable value for data processors and for displaying a human-readable value on a browser. Syntax: <data value=”1″>content</data> Example: <!DOCTYPE html> <html> <body> … Read more

Col HTML

HTML <col> Tag In an HTML table, we can define common column properties for each column within <colgroup> element using the HTML <col> tag. Instead of applying individual style rules for each column cell, it allows to application of common style rules for each column cell. There is no need for an end tag for … Read more

Code HTML

HTML <code> Tag The HTML <code> tag is a phrase tag. It is used to specify a piece of computer code. It displays the contents in the browser’s default monospace font (the fixed-width font). HTML Phrase Tags: Tag Uses <em> To display an emphasized text. <strong> To display an important text. <dfn> To specify a … Read more

Cite HTML

HTML <cite> Tag To define a citation the HTML tag is used. For a piece of creative work, quoted content, books, websites, a research paper, a blog spot, painting, etc. we need references or titles. The HTML <cite> tag thus provides the source of a quote or content. It renders its content in the italic … Read more