Set Text
Using Frames

Set as new Pages

Split the right frame into two frames

Set the text of the top pane

saving pages

Runtime (Link)

setting text

add new html

<table border="1" cellspacing="1" style="border-collapse: collapse" bordercolor="#111111" width="100">
<tr> <td>A<td> </tr>
<tr> <td>B <td> </tr>
<tr> <td>C</td> </tr>
<tr> <td>D</td> </tr>
</table>
 

Note

Runtime (Link)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>this is content</title>
<base target="main" />
<script type="text/javascript">
<!--
function FP_setFrameText(f,txt,p) {//v1.0
var b,c,d=document,fd=null,fw,i,pf=parent.frames,df=d.frames; fw=pf[f]; if(!fw) fw=df[f];
if(fw) { fd=fw.document; if(p) { b=fd.body; c=b?b.style?b.style.backgroundColor:null:null;
if(!c) c=fd.bgColor; } fd.open(); fd.write('<HTML><HEAD></HEAD><BODY>'+txt+'</BODY></HTML>');
fd.close(); fd=fw.document; if(p) fd.body.style.backgroundColor=c; }
}
// -->
</script>
</head>

<body style="background-color: #F7E6A2" onload="FP_setFrameText(/*id*/'contents', '&lt;table border=&quot;1&quot; cellspacing=&quot;1&quot; style=&quot;border-collapse: collapse&quot; bordercolor=&quot;#111111&quot; width=&quot;100&quot;&gt;\r\n &lt;tr&gt; &lt;td&gt;A&lt;td&gt; &lt;/tr&gt;\r\n &lt;tr&gt; &lt;td&gt;B &lt;td&gt; &lt;/tr&gt;\r\n &lt;tr&gt; &lt;td&gt;C&lt;/td&gt; &lt;/tr&gt;\r\n &lt;tr&gt; &lt;td&gt;D&lt;/td&gt; &lt;/tr&gt;\r\n&lt;/table&gt;\r\n', true)">

<p style="height: 25px">this is content</p>

</body>

</html>