html layouts page - using table

<html>
<head>
</head>

<body>
<table width="450" border="1">
    <tr>
    <td colspan="2" style="background-color:#0CF"> 
        <h1>HOW TO MAKE A WEBPAGE EASILY</h1>
        </td>
        </tr>
        
        <tr valign="top">
        <td style="background-color:#F3C; width:100px; text-align:top;">
        <b>Menu</b>
        <br />
        <b>HTML</b>
        <br />
        <b>CSS</b>
        <br />
        <b>JAVASCRIPT</b>
        </td>
        <td style="background-color:#FF3; height:200px; width:400px; text-align:top;">
        home page ........
        </td>
        </tr>
        
        <td colspan="2" style="background-color:#96C; text-align:center">
        Copyright @ 2017 google.com
        </td>
        </table>
</body>
</html>