HTML <head>
query_builder | Christopher PisaniThe HTML element <head> contains the most important information for the website. The elements within the <head> are not for human readability. The most basic and required information in the head, is the <title>, whereas the other elements that can be placed are the stylesheets, with the <link> tag, scripting files <script> and <meta> data.
Example:
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Document title</title>
<link rel="stylesheet" href="... The link to the stylesheet ...">
<script src="... The link to the scripting files ..."></script>
</head>
<body>
.... The document info here ....
</body>
</html>
Available Attributes
No specific attributes are assigned for this element, other than the standard global attributes.