html个人简历

https://gitee.com/aijiawei3344/codes/g8piyjc3kb7nav4whqd2r79

<!DOCTYPE html> <html> <head>  <title>范嘉玮-个人简历</title>  <meta charset="utf-8">  <link rel="stylesheet" type="text/css" href="../css/mystyle.css">   <style>   body{   background: #666666;     }   div{    border:50px;    border-radius: 5px;    background: url(../img/b1.jpg);    position: 80px;    background-size: 100% auto;    width: 65%;    height: 100%;    margin-left:auto;    margin-right:auto      }     p{      font-size:40px;      }     h4{     font-size: 15px;     padding-left: 26px;      }   </style> </head> <body>  <div>      <table  width="800" align="center">    <tr>          <td align="center"><p>个人简历</p>     </td>     <td >           <img src="https://ss2.baidu.com/6ONYsjip0QIZ8tyhnq/it/u=3152707853,1528339678&fm=58&bpow=1200&bpoh=1311" width="130" height="130" alt="图片" align="right">     </td>    </tr>

  </table>      <table  align="center" width="1000">        <hr width="1000" align="left">    <tr>     <td>姓名: 范嘉玮</td>     <td width="100" height="50"></td>          <td>性别: 男</td>     <td width="100" height="50"></td>     <td>民族: 满族</td>     <td width="100" height="50"></td>    </tr>    <tr>     <td>出生年月: 1999-07-01</td>     <td width="100" height="50"></td>          <td>联系电话: 151****1352</td>     <td width="100" height="50"></td>     <td>工作经验: 无</td>     <td width="100" height="50"></td>    </tr>    <tr>     <td>学历: 本科</td>     <td width="100" height="50"></td>          <td>专业: 计算机应用与技术</td>     <td width="100" height="50"></td>     <td>毕业学校: 青海大学</td>     <td width="100" height="50"></td>    </tr>    <tr>     <td>住址: 比尔吉沃特</td>     <td height="50"></td>    </tr>    <tr>     <td>电子邮箱: </td>     <td height="50"></td>    </tr>    <tr>     <td>求职意向: 啥也不想干</td>     <td height="50"></td>    </tr>      </table>      <hr width="1000" align="center">      <table align="center" width="1000">          <tr>     <td>目标职位: CEO</td>     <td height="50"></td>    </tr>    <tr>     <td>目标行业: 爱干啥干啥</td>     <td height="50"></td>    </tr>    <tr>     <td>期望薪资: 2000w</td>     <td height="50"></td>    </tr>    <tr>     <td>期望地区: 杭州</td>     <td height="50"></td>    </tr>    <tr>     <td>爱好特长: 电子竞技</td>     <td height="50"></td>    </tr>   </table>       <hr width="1000" align="center">      <h4 align="left"> 自我评价</h4>   <table align="center" width="1000">   </table>    <tr>     <td>本人好吃懒做混吃等死啥也不想干,实属废人也</td>     <td height="50"></td>    </tr>     </table>  </div> </body> </html>

 

转载于:https://www.cnblogs.com/aijiawei3344/p/10544756.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
你可以使用以下步骤来创建一个带有美化和背景的个人简历: 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. 最后,将你的个人简历文件和你的背景图片和头像图片放在同一个文件夹中,并将文件名与代码中的相应文件名匹配即可。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值