HTML атрибут content
The contenteditable attribute is used to specify whether or not the content of an element is editable. Read about this attribute and see on what elements to use.
Атрибут content указывает значение, связанное с атрибутом name или http-equiv.
Этот атрибут можно использовать только на элементе meta для установки метаинформации в HTML-документе.
Синтаксис
<meta name="description" content="A description of the document">Пример использования атрибута content в HTML
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Online Free Tutorials" />
<meta name="keywords" content="HTML,CSS,JavaScript,PHP, Git" />
<meta http-equiv="refresh" content="30" />
</head>
<body>
<h1>Example of the HTML "content" attribute</h1>
<p>Lorem ipsum, or lorem ipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.</p>
</body>
</html>Практика
Практика
Какие варианты использования атрибута content в HTML являются допустимыми согласно предоставленному веб-ресурсу?