CHITUS

<em>

Коротко/Briefly:

what is : The <em> tag highlights text in italics (Voice Assistant reads with emphasis)

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

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

<!DOCTYPE html>
<html>
<head>
    <title>Chitus</title>
</head>
<body>
    <p><em>Chitus</em> is an <em>awesome</em> website for learning web development.</p>
</body>
</html>

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

The <em> tag adds semantic emphasis, nested <em> in <em> tag increases importance (emphasis) for screen readers. It is better to use <i> for italics, <strong> for importance.

Тег <em> додає семантичний наголос, вкладений <em> у <em> тег посилює важливість(наголос)для скрінридерів. Для курсиву краще використовувати <i>, для важливості <strong>.