欢迎您访问 最编程 本站为您分享编程语言代码,编程技术文章!
您现在的位置是: 首页

HTML5 基础 1

最编程 2024-03-09 21:30:40
...

示例

 <!-- 工作表 -->
    <h1 style="text-align: center;">My working time</h1>
    <h4 style="text-align: center;">working Day</h6>
        <table border="1" cellspacing="5" align="center">
            <tr>
                <th rowspan="2">AM</th>
                <th>9:30</th>
                <th>11:30</th>
                <th>----</th>
                <th>----</th>
                <th>----</th>
                <th>----</th>
            </tr>
            <tr>
                <th>working</th>
                <th>Go off work</th>
                <th>Empty</th>
                <th>Empty</th>
                <th>Empty</th>
                <th>Empty</th>
                
            </tr>
            <tr>
                <th colspan="7">Rest</th>
            </tr>
            <tr>
                <th rowspan="2">Pm</th>
                <th>1:00</th>
                <th>6:00</th>
                <th>----</th>
                <th>----</th>
                <th>----</th>
                <th>----</th>
            </tr>
            <tr>
                <th>working</th>
                <th>Go off work</th>
                <th>Empty</th>
                <th>Empty</th>
                <th>Empty</th>
                <th>Empty</th>
            </tr>
        </table>