Tutorials

https://vvcestudio.com.br/en/tutorial/html/meta/
menu

HTML META TAGS

Metadata is data (information) about data.
The meta tag provides metadata about the HTML document.
Metadata will not be displayed on the page, but will be machine-parseable.
Meta-elements are typically used to specify the page description, keywords, document author, last modification, and other metadata.
Metadata may be used by browsers (such as displaying content or page reloading), search engines (keywords), or other web services.
HTML5 introduced a method to allow web designers to take control over the viewport (the user-visible area of a web page), via the meta tag.

Here is an example of meta tags.

HTML code:
x
<head>
<title>Meta tags</title>
<meta charset="utf-8">
<meta name="description" content="page example">
<meta name="keywords" content="meta, html, valente, palavra, chave">
<meta name="author" content="Vinícius Valente">
<meta http-equiv="refresh" content="10">
</head>