<!DOCTYPE html>

<html>
<head>
<title>Table Demo (using table for layout)</title>
</head>

<body>

<table height="1000">

    <tr>
        <td width="200" bgcolor="cyan" align="center" valign="top">
            <br />
            <br />
            <p>some menu option</p>
            <p>another menu option</p>
       </td>

       <td width="800" bgcolor="lightyellow" align="center" valign="top" >
           <br />
           <h2>some descriptive text</h2> 
       </td>
    </tr>
</table>