HTML Skeleton Flashcards
What tags are necessary for a complete HTML Skeleton?
The tags that are necessary for a complete HTML skeleton are: !DOCTYPE, html, head, and body.
What type of content belongs within the head of an HTML document?
The element contains meta information about the HTML page. (ex: title, scripts, & style sheets)
What type of content belongs within the body of an HTML document?
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.
Where must the DOCTYPE declaration appear in a valid HTML document?
It must only appear once, at the top of the page (before any HTML tags).