HTML Flashcards
Where do you put non-visible content about the HTML document?
Head
Where do you put visible content about the HTML document?
Body
Where do the <head> and <body> tags go in a valid HTML document?
In the HTML tag
What is the purpose of a <!DOCTYPE> declaration?
To tell the browser which version of HTML it should be using
How do block-level elements affect the document flow?
They will always start on a new line
How do inline elements affect the document flow?
They will continue on the same 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 lists are numbered, unordered lists are not (bullet points)
Is an HTML list a block element or an inline element?
Block
What HTML tag is used to link to another website?
a
What is an absolute URL?
The full link to a website
What is a relative URL?
Links to pages within the same website
How do you indicate the relative link to a parent directory?
../
How do you indicate the relative link to a child directory?
folder/link