This may seem like a weird question, but i'm building some script that reads HTML files and i'm dividing the content to 2, body and head and was wondering if there could be other content i might not know of?
The only thing i know of is <DOCTYPE>
and i was wondering if there could be more?
Definition and UsageThe <head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag. 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.
Since the footer is a visible piece of your site, it should go within the body.
The <body> tag defines the document's body. The <body> element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc. The <head> element is a container for all the head elements.
The <footer> tag in HTML is used to define a footer of HTML document. This section contains the footer information (author information, copyright information, carriers, etc). The footer tag is used within the body tag.
The doctype declaration isn't exactly content in the sense of the word.
There isn't any content that is supposed to exist outside head
and body
(and in fact, any content that's meant to display should only exist inside body
). Browsers can create some pretty wacky DOMs when you give them strange or invalid markup, however. Here's an example.
Also, head
and body
, in that order, are the only two possible children of html
, the root element.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With