<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #f0f2f5;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
h1 {
color: #333;
}
.section {
margin-bottom: 20px;
}
.section h2 {
border-bottom: 2px solid #007bff;
padding-bottom: 5px;
color: #333;
}
.section p {
margin: 5px 0;
}
.section ul {
list-style-type: none;
padding: 0;
}
.section ul li {
background-color: #f2f2f2;
padding: 10px;
margin-bottom: 5px;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>John Doe</h1>
<div class="section">
<h2>Contact Information</h2>
<p>Email: john.doe@example.com</p>
<p>Phone: (123) 456-7890</p>
<p>Address: 123 Main St, Anytown, USA</p>
</div>
<div class="section">
<h2>Professional Experience</h2>
<ul>
<li>
<h3>Software Developer at XYZ Corp</h3>
<p>Jan 2020 - Present</p>
<p>Developed and maintained web applications. Led a team of junior developers and managed project deadlines.</p>
</li>
<li>
<h3>Junior Developer at ABC Ltd</h3>
<p>Jun 2017 - Dec 2019</p>
<p>Worked on various client projects, contributing to both frontend and backend development tasks.</p>
</li>
</ul>
</div>
<div class="section">
<h2>Education</h2>
<ul>
<li>
<h3>Bachelor of Science in Computer Science</h3>
<p>University of Somewhere, 2017</p>
</li>
</ul>
</div>
<div class="section">
<h2>Skills</h2>
<ul>
<li>JavaScript, HTML, CSS</li>
<li>React, Node.js</li>
<li>Python, Django</li>
</ul>
</div>
</div>
</body>
</html>
标签:个人简历,示例,color,section,bottom,29,padding,5px,margin
From: https://blog.51cto.com/u_16160172/12032375