Los metadatos significan la información sobre los datos. La etiqueta <meta> en HTML proporciona información sobre el documento HTML o, en palabras simples, proporciona información importante sobre un documento. Estas etiquetas se utilizan básicamente para agregar pares de nombre/valor para describir las propiedades de los documentos HTML, como la fecha de caducidad, el nombre del autor, la lista de palabras clave, el autor del documento, etc.
En este artículo, veremos cómo configurar los metadatos sobre un documento HTML utilizando la etiqueta HTML <Meta> .
Sintaxis:
<meta attribute-name="value">
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title> How to define metadata about an HTML document in HTML5? </title> <meta charset="utf-8"> <meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> How to define metadata about an HTML document in HTML5? </h3> <p> Prepare for the Recruitment drive of product based companies like Microsoft, Amazon, Adobe etc with a free online placement preparation course. The course focuses on various MCQ's & Coding question likely to be asked in the interviews & make your upcoming placement season efficient and successful. </p> </body> </html>
Producción: