You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
2.3 KiB

1 month ago
<!DOCTYPE html>
<html lang="zh">
<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;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
.container {
max-width: 600px;
margin: auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
.section {
margin-bottom: 20px;
}
.section h2 {
color: #555;
}
.contact {
background: #e7f3fe;
padding: 10px;
border-left: 5px solid #2196F3;
}
</style>
</head>
<body>
<div class="container">
<h1>张伟</h1>
<div class="section">
<h2>职位</h2>
<p>计算机科学教师</p>
</div>
<div class="section">
<h2>教育背景</h2>
<ul>
<li>硕士学位,计算机科学,清华大学</li>
<li>本科,软件工程,福州大学</li>
</ul>
</div>
<div class="section">
<h2>工作经历</h2>
<ul>
<li>计算机科学教师福州大学2015年至今</li>
<li>软件开发工程师华为技术有限公司2010-2015年</li>
</ul>
</div>
<div class="section">
<h2>研究兴趣</h2>
<ul>
<li>人工智能</li>
<li>数据结构与算法</li>
<li>教学方法与教育技术</li>
</ul>
</div>
<div class="section contact">
<h2>联系方式</h2>
<p>邮箱: zhangwei@example.com</p>
<p>电话: 138-XXXX-XXXX</p>
</div>
<div class="section">
<h2>个人爱好</h2>
<ul>
<li>编程</li>
<li>阅读科技类书籍</li>
<li>游泳</li>
</ul>
</div>
</div>
</body>
</html>