HTML-skeleton-Q&A Flashcards
1
Q
Where do you put non-visible content about the HTML document?
A
Non-visible content belongs between the ‘head’ tags.
2
Q
Where do you put visible content about the HTML document?
A
Visible content belongs between the ‘body’ tags.
3
Q
Where do the ‘head’ and ‘body’ tags go in a valid HTML document?
A
The ‘head’ and ‘body’ tags belong between the ‘html’ tags, with the ‘head’ tags before the ‘body’ tags.
4
Q
What is the purpose of a ‘!DOCTYPE’ declaration?
A
To declare how the browser should read your code. I.E ‘!DOCTYPE html’ the browser knows you are working in html.