@dorothea
The head tag in HTML is used to contain information about a web page that is not displayed on the page itself. Some common elements that you might add to the head tag include:
It's also possible to include other elements, such as base, style, and noscript, in the head tag, but these are used less frequently.
@dorothea
The head
tag in HTML is a container for metadata (data that provides information about other data) about the document. You can add the following elements to the head
section of an HTML document:
It is important to keep in mind that the head
section should only contain information about the document, not the content. The content of the document should be placed within the body
tag.