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

html continued

Indenting with Lists:

you can also indent using with the list tag which will work on any browser.
The tag is <ul>

it needs an open and closing tag.
<ul>content</ul>

It is great for quotes.


example>>>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Pony Pony Pony</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
Here is the pony.
<ul>
Isn't she terribly lovely and kind. Oh yes, and she likes carrots and bread. And long walks through the forest. She likes to chase the squirrels and rabbits.
</ul>
Nipping at their precious little fuzzy tails.
</body>
</html>