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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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 : **

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly