<class home>  <html part II>   <back   next>

html continued

Unordered Lists:

These create bulletted lists set off from normal text.
needs a closing tag.
<ul> tag has different shapes:
<ul type=circle
<ul type="square"
<ul type=disk (this is the default if you don't specify type)
Then you specify list items individually with an opening <li> tag.
You can change the shape again by putting type="shape" in the <li> tag. ex. <li type="square">


example>>>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
<title>work</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<ul type="circle">
<li>
do the dishes
<li>
start cooking
<li>
check the soup
<li>
set the table
</ol>

<ul type="square">
<li>
rearrange the furniture
<li>
paint the walls
<li>t
hrow out the pictures
<li>
juggle the monitors
</ol>

<ul type="disc">
<li>
run around the building
<li>
do jumping jacks
<li type="square">
stretch
<li>
yoga
</ol>

</body>
</html>