<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>个人简介</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
.profile-img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
}
.section {
margin-bottom: 30px;
}
.section h2 {
color: #333;
border-bottom: 2px solid #eee;
padding-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="section">
<h2>基本信息</h2>
<img src="" alt="头像" class="profile-img">
<ul>
<li>姓名:张三</li>
<li>年龄:28</li>
<li>职业:软件工程师</li>
<li>邮箱:zhangsan@example.com</li>
</ul>
</div>
<div class="section">
<h2>教育背景</h2>
<p>2015-2019 某某大学 计算机科学与技术 学士学位</p>
<p>2019-2022 某某大学 软件工程 硕士学位</p>
</div>
<div class="section">
<h2>工作经历</h2>
<h3>ABC科技有限公司(2022年至今)</h3>
<p>担任高级软件工程师,负责后端系统开发和维护</p>
<h3>XYZ软件公司(2019-2022)</h3>
<p>担任软件工程师,参与多个大型项目的开发</p>
</div>
<div class="section">
<h2>技能专长</h2>
<ul>
<li>编程语言:Java, Python, JavaScript</li>
<li>框架:Spring Boot, React, Vue.js</li>
<li>数据库:MySQL, PostgreSQL, MongoDB</li>
<li>工具:Git, Docker, Kubernetes</li>
</ul>
</div>
<div class="section">
<h2>项目经验</h2>
<h3>电商平台开发</h3>
<p>负责后端API设计和开发,使用Spring Boot框架</p>
<h3>移动应用开发</h3>
<p>参与React Native跨平台应用开发</p>
</div>
</div>
</body>
</html>