html简洁漂亮的个人简历,个人主页,个人简介网页版(源码)
以下是一个使用HTML和CSS创建的简洁漂亮的个人简历网页版示例代码:
<!DOCTYPE html>
<html lang="en">
<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: #f8f8f8;
}
.header {
text-align: center;
padding: 20px;
background-color: #fff;
}
.header h1 {
margin-bottom: 0;
}
.header h2 {
font-weight: normal;
font-size: 0.8em;
color: #999;
}
.content {
margin-top: 20px;
padding: 20px;
background-color: #fff;
}
.content h3 {
margin-bottom: 10px;
}
.content p {
margin-bottom: 5px;
}
.footer {
text-align: center;
padding: 20px;
background-color: #f8f8f8;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="header">
<h1>张三</h1>
<h2>个人简历</h2>
</div>
<div class="content">
<h3>教育背景</h3>
<p>2010-2015, 北京大学, 计算机科学与技术学士学位</p>
<h3>工作经验</h3>
<p>2015-2020, 某科技公司, 软件工程师</p>
<h3>技能</h3>
<p>HTML, CSS, JavaScript, Python, MySQL</p>
</div>
<div class="footer">
<p>版权所有 © 2023 张三</p>
</div>
</body>
</html>
这个简历使用了简洁的布局和颜色方案,并使用了常用的HTML元素来展示个人信息。CSS则用于提供视觉格式,使页面看起来更为简洁和专业。这个示例可以作为创建个人简历网页的起点。
评论已关闭