Metadata
Description
The metadata in HTML document provides information about your document.
Example
The metadata is contained inside a head element.
<!DOCTYPE HTML>
<html>
<head>
<!-- define your metadata here -->
<title>web document title</title>
</head>
</html>
The title
element in the code above is metadata.
Most browsers display the title element in the browser window title bar or at the top of the tab that displays the page.
The head
element also defines relationships to external
resources such as CSS stylesheets, define inline CSS styles, and
define and load scripts.