html-skeleton Flashcards

1
Q

Where do you put non-visible content about the HTML document?

A

Non-visible content (metadata) should go in the head element which resides in the html element and precedes the body element.

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

Where do you put visible content about the HTML document?

A

The visible content in an HTML document belongs in the body element which is a child of the html element and proceeds the head element.

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

Where do the head and body tags go in a valid HTML document?

A

The head and body tags in a valid HTML document belong as children of the html element with the head preceding the body.

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

What is the purpose of a DOCTYPE declaration?

A

The DOCTYPE declaration tells the browser what type of content the page should load. Typically followed by HTML for web development.

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