经典网页的布局练习

<html>
    <head>
        <title>网页的布局</title>
        <meta charset="utf-8">
    </head>
    <body topmargin="0" leftmargin="0">
        <table border="0" width="960" align="center" cellpadding="0" cellspacing="0">
            <tr height="50" bgcolor="red" align="center"><td><font size="12" color="white">网页的顶部</font></td></tr>
            <tr>
                <td>
                    <table height="500" width="30%" align="left" bgcolor="yellow">
                        <tr>
                            <td><font size="6" color="white">网页的左部分</font></td>
                        </tr>
                    </table>
                    <table height="500" width="70%" align="left" bgcolor="green">
                        <tr >
                            <td><font size="6" color="white">网页的右部分</font></td>
                        </tr>
                    </table>
                </td>
            </tr>
            <tr height="50" bgcolor="red" align="center"><td><font size="12" color="white">网页的底部</font></td></tr>        
        </table>
    </body>
</html>
原文地址:https://www.cnblogs.com/themost/p/8167764.html