kytschBASIC

Put down that phone!
Please view me on real computer.

THEAD

Creating the table's header.

Example

THEAD
	TROW
		THEADCELL
			PRINT "Table header 1"
		THEADCELL CLOSE
		THEADCELL
			PRINT "Table header 2"
		THEADCELL CLOSE
	TROW CLOSE
THEAD CLOSE

Output

<thead>
	<tr>
		<th>
			<span>Table header 1</span>
		</th>
		<th>
			<span>Table header 2</span>
		</th>
	</tr>
</thead>

See also