THEAD

Creating the table's header.

Example

THEAD

	TROW

		THEADCELL

			PRINT "Table header 1"

		END THEADCELL

		THEADCELL

			PRINT "Table header 2"

		END THEADCELL

	END TROW

END THEAD

Output

<thead>

	<tr>

		<th>

			<span>Table header 1</span>

		</th>

		<th>

			<span>Table header 2</span>

		</th>

	</tr>

</thead>

See also