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 and tags go in a valid HTML document?
html element
What is the purpose of a DOC TYPE declaration?
tell browser what html version to address
Give five examples of HTML element tags.
h1, p1, ul, ol, dl, li, etc…
What is the purpose of HTML attributes?
provide more information about the content contained within that element.
Give an example of an HTML entity (escape character).
& would be used for &
What is the difference between an ordered list and an unordered list in HTML?
Ordered lists create numbered items while unordered lists dot each item.
What three HTML elements do you use to build a description list?
dl, dt, dd
How do you indicate the parent folder in a path?
../
How do you indicate the child folder in a path?
filename
How do you indicate the grand parent folder in a path?
../../filename
How do you indicate the current folder in a path?
./
What are the six primary HTML elements for creating tables?
table, td, tr, th, tbody, thead, tfoot
What purpose do the thead and tbody elements serve?
Differentiate the first row from the rest of the table stylistically