The Table tag within the HTML file handles the display of information. By default, the tag looks similar to this (getting data for a SharePoint Tasks list):
<table title="One">
<tr>
<td>
<field Name='Title'>Title</field><br />
<field Name='% Complete'>% Complete</field><br />
<field Name='Assigned To'>Assigned To</field><br />
<field Name='Due Date'>Due Date</field><br />
<field Name='Description'>Description</field><br />
</td>
</tr>
</table>
The Table tag has a default title of “One” and a normal table structure. Most important are the Field tags, as they have the titles of the columns returning values from the form.
For example, the above example has Title, % Complete, and other Tasks list columns. The value in the Name section of the Field tag must match the title of the list column receiving the information.