I realize this isn't a Mac board, but should any of you ever decide to leave the "dark side", keep this in mind.
It seems I've solved my problem. Originally I copied & pasted the code from HTML goodies and didn't do any editing; unfortunately when you do this Safari misinterprets the spacing and decides it's something else.
By replacing the spacing with tabs in the text editor, it works just fine. Live and learn.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd"><html>
<head>\
<title>My Web Site</title>
</head>
<body>
<p>Hello <strong>world!</strong><p>
<br>
<TABLE BORDER="1">
<TR>
<TD>Cell Data</TD>How To
<TD>Cell Data</TD>
</TR><TR>
<TD>Cell Data</TD>
<TD>Cell Data</TD>
</TR>
</TABLE>
<p>This is my very first HTML page.<p>
</body>
</html>
|