HTML
Lists and Tables
Mrs. Rosemarie M. Coronejo
IAS-Math. Dept.
Lists - unordered
ul unordered lists
(bulleted lists)
li define lists
<ul> attributes for marker
style="list-style-type:none"
style="list-style-type:square
style="list-style-type:circle
style="list-style-type:disc"
Seatwork 1
Lists - ordered
ol ordered lists
(numbered lists)
li define lists
<ol> attribute for marker
Seatwork 2
Description Lists
List of terms with desciprion
<dl>, </dl> tag defines the description list
<dt>, </dt> tag defines the term (name)
<dd>, </dd> tag describes each term:
Description Lists
Seatwork 3
HTML Tables
Table is a matrix of rows and columns used to organize
data
<table>, </table> define table
<tr>, </tr> define a table row
<td>, </td> defines table data cells)
A data cell can contain text, images, lists, paragraphs,
forms, horizontal rules, tables, etc.
align=center attribute to center the data in the cell
<caption>,</caption> caption
<th>, </th> table header
Seatwork 4