HTML Flashcards
(124 cards)
Where do you put non-visible content about the HTML document?
In the head element
Where do you put visible content about the HTML document?
In the body element
Where do the and tags go in a valid HTML document?
Siblings, children of HTML element
What is the purpose of a declaration?
To declare the type of the document.
Give five examples of HTML element types.
HTML, head, title, body, h1
What is the purpose of HTML attributes?
Provide additional information about the contents of an element
Give an example of an HTML entity (escape character).
© for copyrighted symbol
How do block-level elements affect the document flow?
They take up the width of the parent element. Push content on the left up and content on the right down.
How do inline elements affect the document flow?
Take up whatever space is needed for the content and doesn’t move any element around.
What are the default width and height of a block-level element?
The width and height of the parent
What are the default width and height of an inline element?
Width and height of whatever space is needed for the content.
What is the difference between an ordered list and an unordered list in HTML?
An ordered list has numbers labeled in ordered pairs while an unordered list has bullet points.
Is an HTML list a block element or an inline element?
block
What HTML tag is used to link to another website?
Anchor
What is an absolute URL?
A direct address
What is a relative URL?
Shorthand name for the file within directory.
How do you indicate the relative link to a parent directory?
../
How do you indicate the relative link to a child directory?
/
How do you indicate the relative link to a grand parent directory?
../../
How do you indicate the relative link to the same directory?
file name
What is the purpose of an HTML form element?
To collect info from the user
Give five examples of form control elements
Select, textarea, form, button, radio
Three examples of type attribute values for HTML input elements
Text, radio, checkbox
Is HTML element a block element or an inline element?
Inline block element