* img element - most browsers can handle
image src files in GIF, JPG, and PNG
* a element - anchor element
<a href="http://www.humboldt.edu"> HSU Home Page </a>
* several basic list elements
* ul - unordered list
* ol - ordered list
* li - list item
* dl - definition list
* dt - definition term
* dd - definition definition
* special characters
< <
not-breaking space
& &
...and there are also ANY Unicode character:
&#unicodenum;
‽ <!-- Interrobang, acc. to course text -->
* we'll use the table element
JUST for tabular data in a page
(NOT to structure forms! we'll use CSS for that)
table element
* tr - table row
* td - table data (item) - data cell
* th - table header (cell)
* scope - attribute of a th element
* is the scope of this header a row or a column?
* <th scope="col"> - the header of a column </th>
<th scope="row"> - the header of a row </th>
* caption - caption for this table