Terms
Term
What is the body element?
Definition
The <body> tag defines the main content of an HTML document that is intended to be visible to the user. It serves as the parent container for almost everything you see on a screen— Headings Paragraphs Images Hyperlinks tables, and lists. From a structural standpoint, there is only one <body> per HTML document, and it follows immediately after the <head> tag.
Term
Can an HTML document can contain multiple <body> tags?
Definition
False. There is only one <body> per document. If multiple exist, the browser may ignore them or merge them, causing QM capture issues.
Term
What is the head element?
Definition
The <head> tag is a container for metadata. It is placed between the <html> tag and the <body> tag. It houses critical information such as the page title, character encoding (UTF-8), links to CSS stylesheets, and—most importantly for us—the scripts that power external tools like Quantum Metric.
Practice Tests