Quiz Questions Flashcards
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?
between the tags
What is the purpose of a declaration?
to let web browser know what version of HTML the page is written in
Give five examples of HTML element tags.
<p> </p>
<h1> <a></a></h1>
What is the purpose of HTML attributes?
to modify element type / provide functionality
Give an example of an HTML entity (escape character).
©
How do block-level elements affect the document flow?
contained by row, takes full width of page
How do inline elements affect the document flow?
contained within the element’s dimensions
What are the default width and height of a block-level element?
height is the element’s height, width is page width
What are the default width and height of an inline element?
width and height of the element
What is the difference between an ordered list and an unordered list in HTML?
OL is in order by ABC, 123, etc. and UO is bulleted list
Is an HTML list a block element or an inline element?
Block
What HTML tag is used to link to another website?
<a></a>
What is an absolute URL?
an address to a specific link on the web
What is a relative URL?
an address relative to the file currently in on local
How do you indicate the relative link to a parent directory?
”..”
How do you indicate the relative link to a child directory?
child folder name then file