[bt-devel] Saving Search Analysis To Disk
Joachim Ansorg
bt-devel@crosswire.org
Thu, 28 Jun 2001 11:15:19 +0200
Hi Luke!
Here's a small HTML introduction.
The basic structure of an HTML files looks like this:
<HTML>
<HEAD></HEAD>
<BODY>
</BODY>
</HTML>
Each tag opened with <TAG> has to be closed with </TAG>.
A table has the following structure:
<TABLE>
<TR>
<TD>first column in the first row</TD>
<TD>second column in the first row</TD>
</TR>
<TR>
<TD>first column in the second row</TD>
<TD>second column in the second row</TD>
</TR>
</TABLE>
<TR> opens a new row, <TD> a new column.
The table should be included in the body tag, so the final table looks like
this:
HTML>
<HEAD></HEAD>
<BODY>
<TABLE>
<TR>
<TD>first column in the first row</TD>
<TD>second column in the first row</TD>
</TR>
<TR>
<TD>first column in the second row</TD>
<TD>second column in the second row</TD>
</TR>
</TABLE>
</BODY>
</HTML>
I hope this helps a little bit,
Joachim