Horje
How to create The HTML <head> Element

The <head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag.

HTML metadata is data about the HTML document. Metadata is not displayed.

Metadata typically define the document title, character set, styles, scripts, and other meta information.


Example of The HTML <head> Element

<head>..</head> should be put between <body>..</body> Following is a example.
index.html
Example: HTML
 <!DOCTYPE html>
<html>
<head>
  <title>A Meaningful Page Title</title>
</head>
<body>

The content of the document......

</body>
</html> 






Category:
Web Tutorial
Sub Category:
HTML - The Head Element
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference