Horizontal frameset
<html>
<frameset rows="25%,75%">
<frame src="frame_c.htm">
<frame src="frame_d.htm">
</frameset>
</html>
Veritcal
<html>
<frameset rows="25%, 75%" cols="25%,75%">
<frame src="frame_a.htm">
<frame src="frame_b.htm">
<frame src="frame_c.htm">
<frame src="frame_d.htm">
</frameset>
</html>
Veritcal and Horizontal frameset with bolder
<html>
<frameset rows="25%, 75%" cols="25%,75%" frameborder="1">
<frame src="frame_a.htm">
<frame src="frame_b.htm">
<frame src="frame_c.htm">
<frame src="frame_d.htm">
</frameset>
</html>
TABLES:
<table border="1">
<tr>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>400</td>
<td>500</td>
<td>600</td>
</tr>
</table>
</body>
</html>
TABLE with Heading
<table border="1">
<tr>
<th>Heading</th>
<th>Another Heading</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>