写一个html的个人简历
<!DOCTYPE html>
<html>
<head>
<title>个人简历</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
margin-top: 30px;
}
h2 {
margin-top: 20px;
}
p {
margin-top: 10px;
margin-bottom: 10px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.education, .experience {
margin-top: 20px;
}
.education h3, .experience h3 {
margin-top: 0;
}
.skills {
margin-top: 20px;
}
.skills ul {
margin: 0;
padding: 0;
list-style: none;
}
.skills li {
display: inline-block;
margin-right: 10px;
padding: 5px 10px;
background-color: #f5f5f5;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>个人简历</h1>
</header>
<main>
<section>
<h2>个人信息</h2>
<p>姓名:张三</p>
<p>性别:男</p>
<p>出生日期:1990年1月1日</p>
<p>联系电话:13812345678</p>
<p>电子邮件:zhangsan@example.com</p>
<p>个人网站:<a href="https://www.example.com">https://www.example.com</a></p>
</section>
<section>
<h2>教育背景</h2>
<div class="education">
<h3>大学本科</h3>
<p>毕业院校:XX大学</p>
<p>专业:计算机科学与技术</p>
<p>学位:学士</p>
<p>在校经历:</p>
<ul>
<li>担任计算机协会主席</li>
<li>参与学校ACM程序设计竞赛</li>
<li>获得优秀毕业生称号</li>
</ul>
</div>
<div class="education">
<h3>研究生</h3>
<p>毕业院校:XX大学</p>
<p>专业:计算机科学与技术</p>
<p>学位:硕士</p>
<p>在校经历:</p>
<ul>
<li>担任研究生会主席</li>
<li>参与科研项目,发表论文多篇</li>
</ul>
</div>
</section>
<section>
<h2>工作经历</h2>
<div class="experience">
<h3>ABC公司</h3>
<p>职位:软件工程师</p>
<p>时间:2015年7月至今</p>
<p>工作内容:</p>
<ul>
<li>负责公司核心产品的开发和维护</li>
<li>参与多个项目,负责模块设计和代码实现</li>
<li>优化产品性能和用户体验</li>
</ul>
</div>
<div class="experience">
<h3>DEF公司</h3>
<p>职位:软件工程师</p>
<p>时间:2013年9月至2015年6月</p>
<p>工作内容:</p>
<ul>
<li>参与多个项目,负责模块设计和代码实现</li>
<li>协助测试人员进行软件测试</li>
<li>编写项目文档和用户手册</li>
</ul>
</div>
</section>
<section>
<h2>技能</h2>
<div class="skills">
<ul>
<li>熟练掌握Java、Python等编程语言</li>
<li>熟悉Linux操作系统和常用命令</li>
<li>熟练使用MySQL、Oracle等数据库</li>
<li>了解前端开发技术,熟悉HTML、CSS、JavaScript等</li>
<li>具备良好的沟通能力和团队合作精神</li>
</ul>
</div>
</section>
</main>
</div>
</body>
</html>
原文地址: http://www.cveoy.top/t/topic/XJU 著作权归作者所有。请勿转载和采集!