菜鸟教程 tryhtml_layout_tables 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <table width="500" border="0">
    <tbody><tr>
        <td colspan="2" style="background-color:#FFA500;">
        <h1>网页的主标题</h1>
        </td>
    </tr>

    <tr>
        <td style="background-color:#FFD700;width:100px;">
        <b>Menu</b><br>
        HTML<br>
        CSS<br>
        JavaScript
        </td>
        <td style="background-color:#eeeeee;height:200px;width:400px;">
        内容就在这里</td>
    </tr>

    <tr>
        <td colspan="2" style="background-color:#FFA500;text-align:center;">
        Copyright  © </td>
    </tr>
</tbody></table>