html制作个人简历

前几天我为大家介绍了些html的标签,利用这些标签咱们可以简单制作个简历,来巩固知识。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>个人简历</title>
</head>
<body background="01bb62571600ba32f8758c9b79b318.jpg@2o.jpg">
    <h4 align="center">个 &nbsp;&nbsp;人 &nbsp;&nbsp;简 &nbsp;&nbsp;历</h4>
    <table align="center" border="1" width="600" height="700" cellspacing="0">
        <tr align="center" height="40">
            <th  >姓名</th>
            <td >蜡笔小新</td>
            <th>性别</th>
            <td >男</td>
            <td rowspan="3" cellpadding="0"><img src= "t01cf5f026b38160b27.jpg" width="120" height="120" ></td>
        </tr>
        <tr align="center" height="40">
            <th>出生年月</th>
            <td >2002-04-07</td>
            <th>籍贯</th>
            <td >黑龙江省</td>
            
        </tr>
        <tr align="center" height="40">
            <th>政治面貌</th>
            <td >共青团员</td>
            <th>民族</th>
            <td >汉族</td>
        </tr>
        <tr align="center" height="40">
            <th>联系电话</th>
            <td >1310092188</td>
            <th>邮箱</th>
            <td  colspan="2">1310222101@qq.com</td>
        </tr>
        <tr height="40">
            <th>毕业院校</th>
            <td align="center">清华大学</td>
            <th>专业</th>
            <td align="center" colspan="2">软件工程</td>
        </tr>
        <tr height="40">
            <th>学历</th>
            <td align="center">本科</td>
            <th>应聘岗位</th>
            <td align="center" colspan="2">WEB前端工程师</td>
        </tr>
        <tr height="40">
            <th>家庭住址</th>
            <td align="center" colspan="4">黑龙江省齐齐哈尔</td>
        </tr>
        <tr height="40">
            <th align="center" rowspan="5">个人经历</th>
            <th>起止时间</th>
            <th>工作单位</th>
            <th>职务</th>
            <th>工作情况</th>
        </tr>
        <tr align="center" height="40">
            <td>2017-2020</td>
            <td>清华大学</td>
            <td>学生</td>
            <td>学习良好</td>
        </tr>
        <tr align="center" height="40">
            <td>2020-2021</td>
            <td>腾讯公司</td>
            <td>实习生</td>
            <td>表现优异</td>
        </tr>
        <tr align="center" height="40">
            <td>2021-2022</td>
            <td>腾讯公司</td>
            <td>web前端工程师</td>
            <td>表现不错</td>
        </tr>
        <tr align="center" height="40">
            <td>2022-2023</td>
            <td>字节跳动</td>
            <td>项目经理</td>
            <td>表现优异</td>
        </tr>
        <tr height="40">
            <th height="50">个人能力</th>
            <td colspan="4">能够熟练使用JavaScript,html.css,并且对于一些框架很熟悉,精通VUE框架</td>
        </tr>
        <tr height="40">
            <th height="50">兴趣</th>
            <td colspan="4">篮球,健身。</td>
        </tr>
        <tr height="40">
            <th height="50">个人评价</th>
            <td colspan="4">有较强的动手能力,喜欢自己开发软件和程序,曾经获得过某某奖项</td>
        </tr>
        
       
    </table>
</body>
</html>

效果如图

图中所涉及的图片,大家可以替换成自己的,也可以私信我要。如果发现错误,欢迎大家指正批评 

  • 56
    点赞
  • 451
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
你可以使用以下步骤来创建一个带有美化和背景的个人简历: 1. 创建一个新的HTML文件,并命名为“resume.html”。 2. 在文件的头部添加以下代码来定义文档类型和字符编码: ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>My Resume</title> </head> ``` 3. 添加一个样式标签,来定义页面的样式: ```html <style> body { background-image: url("background.jpg"); background-size: cover; font-family: Arial, sans-serif; color: #333; } header { background-color: #eee; padding: 20px; text-align: center; } h1 { margin: 0; font-size: 36px; } h2 { margin-top: 30px; margin-bottom: 10px; font-size: 24px; } p { margin: 0 0 10px 0; } ul { list-style-type: none; margin: 0; padding: 0; } li { margin-bottom: 10px; } .section { padding: 20px; background-color: #fff; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); margin-bottom: 30px; } .section:last-of-type { margin-bottom: 0; } </style> ``` 这些样式定义了背景图片,标题和段落的字体和颜色,以及每个小节的样式。 4. 在文档中添加一个header元素,用来展示你的姓名和头像: ```html <header> <img src="profile.jpg" alt="Profile Picture"> <h1>John Doe</h1> </header> ``` 5. 添加一个主体元素,然后在其中添加你的工作经历、教育背景等信息: ```html <body> <div class="section"> <h2>Work Experience</h2> <ul> <li> <h3>Software Engineer</h3> <p>XYZ Company</p> <p>June 2018 - Present</p> <ul> <li>Developed new features for web application using React and Node.js</li> <li>Performed code reviews and mentored junior developers</li> <li>Collaborated with product team to define requirements and scope</li> </ul> </li> <li> <h3>Software Developer</h3> <p>ABC Corporation</p> <p>January 2016 - May 2018</p> <ul> <li>Worked on mobile app development using Java and Android SDK</li> <li>Implemented new features and improved performance of existing codebase</li> <li>Participated in Agile development process and daily stand-ups</li> </ul> </li> </ul> </div> <div class="section"> <h2>Education</h2> <ul> <li> <h3>Bachelor's Degree in Computer Science</h3> <p>University of XYZ</p> <p>Graduated in May 2015</p> </li> </ul> </div> </body> ``` 6. 最后,将你的个人简历文件和你的背景图片和头像图片放在同一个文件夹中,并将文件名与代码中的相应文件名匹配即可。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值