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

html continued

Preformatted Text:

Now this is not the best way to make custom tables and controlling spacing. Tables are best. But this is one solution to laying out a table. The <pre> tag will retain spacing.
needs a closing tag
note, text will display in a Monospaced font.
<pre> content </pre>


example>>>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>My animals</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<pre>
FOALS      HORSES      PUPPIES      DOGS
__________________________________________
Sunny      Sugar       Lenny        Sam
Satin      Sunshine    Charlie      Snoopy
Sinful     Spice Girl  Henry        Sappy
</pre>
</body>
</html>