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 declaration?
to declare what verison of html
Give five examples of HTML element tags.
html , head , body, p, h1-h6
What is the purpose of HTML attributes?
HTML attributes provide additional information about HTML elements.
Give an example of an HTML entity (escape character).
trademark , copyrights, less than ,greater than
What is a HTML entity?
An HTML entity is a piece of text (“string”) that begins with an ampersand (&) and ends with a semicolon (;) .
What is the difference between an ordered list and an unordered list in HTML?
ordered list have its item ordered by number while unorder list just have bullet point
What three HTML elements do you use to build a description list?
<dl> description list
<dt>description term
</dt><dd> description definition</dd></dl>
How do you indicate the parent folder in a path?
by typing ../ to locate one level up from the current folder
How do you indicate the child folder in a path?
by typing /
How do you indicate the grand parent folder in a path?
by typing ../../
How do you indicate the current folder in a path?
by typing the full URL to a file
What are the six primary HTML elements for creating tables?
table tag, tablerow, tabledata, table body, thead, table, th=table header