HTML Skeleton Flashcards

1
Q

What tags are necessary for a complete HTML Skeleton?

A

The tags that are necessary for a complete HTML skeleton are: !DOCTYPE, html, head, and body.

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

What type of content belongs within the head of an HTML document?

A

The element contains meta information about the HTML page. (ex: title, scripts, & style sheets)

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

What type of content belongs within the body of an HTML document?

A

The body element defines the document’s body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.

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

Where must the DOCTYPE declaration appear in a valid HTML document?

A

It must only appear once, at the top of the page (before any HTML tags).

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