CHITUS

<ins>

Коротко/Briefly:

what is : The <ins> tag used to highlight new or added content (underline text)

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

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

<!DOCTYPE html>
<html>
<head>
    <title>Chitus</title>
</head>
<body>
    <p>This is an example of the <ins>ins</ins> tag.</p>
    <p><ins>Inserted text</ins> is used to highlight new or added content in a document.</p>
    <h1>Список продуктів до магазину</h1>
    <ul>
        <li>Хліб</li>
        <li>Молоко</li>
        <li>Яйця</li>
        <li>Овочі</li>
        <li>Фрукти</li>
        <li><ins>М'ясо</ins></li>
        <li><ins>Риба</ins></li>
        <li><ins>Паста</ins></li>
        <li><ins>Рис</ins></li>
        <li><ins>Соуси</ins></li>
    </ul>
</body>
</html>

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

The <ins> tag Highlights new content. The browser interpreter may underline or highlight pasted text, depending on the styles used on the page. In most browsers, by default: text-decoration: underline; (It is possible to underline with the <u> tag) Supports global attributes and Attribute (cite) allows you to refer to editing information; The attribute (datetime) allows you to specify the time of editing.

Тег <ins> Виділяє новий контент. Інтерпретатор браузера може підкреслити або відмітити вставлений текст, залежно від стилів, які використовуються на сторінці. В більшості браузерів за замовчуванням: text-decoration: underline; (Підкреслити можливо тегом <u>) Підтримує глобальні атрибути та Атрибут (cite) дозволяє послатися на інформацію про редагування; Атрибут (datetime) дозволяє вказати час редагування.