HTML document structure Flashcards
1
Q
Doctype
A
is not an HTML tag. It is an “information” to the browser about what document type to expect.
2
Q
html(root element)
A
each and every HTML document always needs to start with the HTML element . Inside of this element we need ONE head element and ONE body element.
💡 Specify the language directly in the tag html : **
3
Q
head
A
head element is basically for things that are not visible in the browser window. contains some general information (metadata) about the document, like its title, scripts, and style sheets.
4
Q
body
A
the body is actually for all the elements that will be visible on the page. So all the elements that we see in the browser will always be inside of the body element.