Project 02: 个人简历 (CSS)
完整代码
html
<!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;
background-color: #f4f4f9;
margin: 0;
padding: 20px;
}
.resume-container {
width: 80%;
margin: auto;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
}
.header {
background-color: #007bff;
color: white;
text-align: center;
padding: 20px 0;
}
.header h1 {
margin: 0;
font-size: 36px;
}
.section {
padding: 20px;
}
.section-title {
font-size: 24px;
margin-bottom: 10px;
color: #333;
}
.section-content {
line-height: 1.6;
}
.contact-info p {
margin: 5px 0;
}
</style>
</head>
<body>
<div class="resume-container">
<div class="header">
<h1>张伟</h1>
<p>高中生 | 自动化专业意向</p>
</div>
<div class="section">
<div class="section-title">个人信息</div>
<div class="section-content">
<p><strong>姓名:</strong> 张伟</p>
<p><strong>性别:</strong> 男</p>
<p><strong>年龄:</strong> 17岁</p>
<p><strong>出生日期:</strong> 2008年5月1日</p>
</div>
</div>
<div class="section">
<div class="section-title">教育背景</div>
<div class="section-content">
<p><strong>学校:</strong> 第一中学</p>
<p><strong>年级:</strong> 高二</p>
<p><strong>成绩排名:</strong> 年级前10%</p>
</div>
</div>
<div class="section">
<div class="section-title">兴趣爱好</div>
<div class="section-content">
<ul>
<li>编程与计算机科学</li>
<li>阅读科技类书籍</li>
<li>参与校内外科技创新活动</li>
</ul>
</div>
</div>
<div class="section contact-info">
<div class="section-title">联系方式</div>
<div class="section-content">
<p><strong>Email:</strong> zhangwei@example.com</p>
<p><strong>电话:</strong> 13800138000</p>
<p><strong>地址:</strong> 北京市海淀区XX路XX号</p>
</div>
</div>
</div>
</body>
</html>