HTML Flashcards
Where do you put non-visible content about the HTML document?
head element
Where do you put visible content about the HTML document?
body element
Where do the head and body tags go in a valid HTML document?
In between HTML tags
What is the purpose of a DOCTYPE declaration?
to declare the type of html used
Give five examples of HTML element tags.
head body p div span
What is the purpose of HTML attributes?
to describe a tag
Give an example of an HTML entity (escape character).
© = ©
How do block-level elements affect the document flow?
block level elements take the entire width of a document
How do inline elements affect the document flow?
Inline elements do not force a new line
What are the default width and height of a block-level element?
Width = 100% Height = auto
What are the default width and height of an inline element?
Width = auto Height = auto
What is the difference between an ordered list and an unordered list in HTML?
Ordered list lists items with numerical values
Unordered list lists items without numerical values
Is an HTML list a block element or an inline element?
A block element
What HTML tag is used to link to another website?
a tag (anchor element)
What is an absolute URL?
Directs you to an external application