HTML 个人简历模板 - 在线制作简历
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>个人简历</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
margin-top: 50px;
}
.container {
width: 80%;
margin: auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 50px;
}
.profile {
width: 30%;
margin-bottom: 30px;
box-shadow: 0px 0px 10px #ccc;
padding: 20px;
}
.profile img {
width: 100%;
margin-bottom: 10px;
}
.profile h2 {
font-size: 18px;
margin-bottom: 5px;
}
.profile p {
font-size: 14px;
line-height: 1.5;
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>个人简历</h1>
<div class='container'>
<div class='profile'>
<img src='https://via.placeholder.com/150' alt='头像'>
<h2>姓名</h2>
<p>性别:女</p>
<p>年龄:25岁</p>
<p>电话:12345678901</p>
<p>邮箱:example@example.com</p>
</div>
<div class='profile'>
<h2>教育背景</h2>
<p>本科:xxx大学,计算机科学与技术专业,2015年-2019年</p>
<p>硕士:xxx大学,软件工程专业,2019年-2022年(预计毕业)</p>
</div>
<div class='profile'>
<h2>工作经历</h2>
<p>2019年6月-2020年6月:xxx公司,前端开发工程师</p>
<p>2020年7月-至今:xxx公司,前端开发工程师</p>
</div>
<div class='profile'>
<h2>技能</h2>
<p>熟悉HTML、CSS、JavaScript等前端基础知识</p>
<p>熟悉Vue和React等前端框架</p>
<p>熟悉Node.js和Express等后端技术</p>
<p>熟悉MySQL数据库</p>
</div>
<div class='profile'>
<h2>自我评价</h2>
<p>热爱前端开发,对新技术有强烈的兴趣和学习欲望</p>
<p>对代码的规范和可维护性有深入的理解和实践</p>
<p>具有较强的团队协作能力和沟通能力</p>
</div>
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/oMSr 著作权归作者所有。请勿转载和采集!