Study notes-HTML to achieve personal resume production

Just use HTML to realize the production of personal resumes, and practice the use of table tags and their attributes such as table.


1. Code:

            <table border="1px" cellspacing="0">
                <col width="100px">
                <col width="100px">
                <col width="100px">
                <col width="100px">
                <col width="100px">
                <col width="100px">
                <col width="200px">
                <tr height="40px" align="center">
                    <td colspan="7">个人简历</td>
                </tr>
                <tr height="40px" align="center">
                    <td>姓名</td>
                    <td></td>
                    <td>性别</td>
                    <td></td>
                    <td>年龄</td>
                    <td></td>
                    <td rowspan="4"></td>
                </tr>
                <tr height="40px" align="center">
                    <td>学历</td>
                    <td></td>
                    <td>籍贯</td>
                    <td colspan="3"></td>
                </tr>
                <tr height="40px" align="center">
                    <td>电话</td>
                    <td></td>
                    <td>政治面貌</td>
                    <td colspan="3"></td>
                </tr>
                <tr height="40px" align="center">
                    <td>毕业院校</td>
                    <td colspan="5"></td>
                </tr>
                <tr height="40px" align="center">
                    <td>求职意向</td>
                    <td colspan="6"></td>
                </tr>
            </table>

2. Effect picture:

Guess you like

Origin blog.csdn.net/qq_41339126/article/details/114437454