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

html continued

Wrapping Text Around a Table:

in the <table> tag insert a align="left" or right attribute. Text will wrap around either to the left or right of the image.
•NETSCAPE only: if you need to add more space around your table between it and the text. Then you can use the hspace=h and vspace=v in the <table> tag:
<table vspace="20" hspace="20" border="3" width="320" align="left">


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>
<table align="left" width=320 border=3 vspace="20" hspace="20">
<tr>
<td width=320> <img src="pony2.gif"></td>
</tr>
<tr>
<td>Here is another picture of my pony in a table.</td>
</tr>
</table>
Here is the text that wraps around my table. It surrounds the pony. It runs around everything. It will not stop unless I use this the break tag with the clear attribute in it, but lets not do that. Lets just let the text run around my table. And it won't stop until I stop writing.
</body>
</html>