这种表格套这表格的代码怎么写呀 各位大神帮帮忙

图片说明

 <table >
            <tr>
                <td >
                  <input type="radio" name="interface" value="<fmt:message key="commonApprovalFlowExaminationandapProvalInterface.agree"/>" />
                  <input type="radio" name="interface1" value="<fmt:message key="commonApprovalFlowExaminationandapProvalInterface.refuse"/>" /> <%--单选按钮 --%>
                </td>
                <!-- 单元格中放置一个表格 -->

              <table >
             </table>         

                </td>
            </tr>
            <!-- 单元格结束 -->
            <tr>
                 <td> 
                     <textarea  rows="3" cols="200"> </textarea> 
                </td>
            </tr>

    </table>
 <!DOCTYPE html>
<html>
<body>
<table border='1'>
  <tr>
    <td>第一个表格</td>
    <td>
        <table  border='1'>
           <tr><td>第二个表格</td></tr>
        </table>
    </td>
  </tr>

</table>
</body>
</html>