Tabel

echo "<figure class='wp-block-table'>";
	echo "<table>";
		echo "<thead>";
			echo "<tr>";
				echo "<th>Kop 1</th>";
				echo "<th>Kop 2</th>";
				echo "<th>Kop 3</th>";
			echo "</tr>";
		echo "</thead>";
		echo "<tbody>";
			echo "<tr>";
				echo "<td>Cel 1</td>";
				echo "<td>Cel 2</td>";
				echo "<td>Cel 3</td>";
			echo "</tr>";
		echo "</tbody>";
		echo "<tfoot>";
			echo "<tr>";
				echo "<td>Voet 1</td>";
				echo "<td>Voet 2</td>";
				echo "<td>Voet 3</td>";
			echo "</tr>";
		echo "</tfoot>";
	echo "</table>";
	echo "<figcaption>Bijschrift tabel</figcaption>";
echo "</figure>";