UK ['metə] US ['metə]
abbr.(Greek=after or beyond) (Greek) after or beyond; [Dialectics] Metalanguage
html meta tag syntax
Function: Provide meta-information about the page, such as descriptions and keywords for search engines and update frequency.
Description: <meta> tag is located at the head of the document and does not contain any content. The <meta> tag's properties define the name/value pairs associated with the document.
Note: <meta> tags are always located inside the head element. Metadata is always passed in name/value pairs.
html meta tag example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <span>hello world</span> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance