<head>
tag
Contains machine-readable metadata about the document such as title, scripts, and stylesheets.
Syntax
<head> ... </head>
Example
html
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>