CHITUS

<dfn>

Коротко/Briefly:

what is : The <dfn> tag used to define a term or word(abbreviations, explanations)

що таке : Тег <dfn> використовується для визначення терміну або слова(абревіатури,пояснення)

Приклад коду/Code Example:

<!DOCTYPE html>
<html>
<head>
    <title>Chitus</title>
</head>
<body>
    <h1><dfn title="Definition">Chitus</dfn></h1>
    <p>The term <dfn title="HyperText Markup Language">HTML</dfn> stands for HyperText Markup Language.</p>
</body>
</html>

Як писати/How to write:

The <dfn> tag Provides an explanation or definition of a term. It can also contain a title attribute, the content of which appears on hover.

Тег <dfn> Надає пояснення або визначення терміну. Він також може містити атрибут title, вміст якого з'являється при наведенні курсору.