145 lines
No EOL
5 KiB
HTML
145 lines
No EOL
5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hugo Laurent - Resume</title>
|
|
<link rel="stylesheet" href="../styles.css">
|
|
<style>
|
|
.resume-container {
|
|
max-width: 800px;
|
|
margin: 2rem auto;
|
|
background: white;
|
|
padding: 2rem;
|
|
border-radius: 12px;
|
|
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.resume-header {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 2px solid #667eea;
|
|
}
|
|
|
|
.resume-photo {
|
|
width: 150px;
|
|
height: 150px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
margin-bottom: 1rem;
|
|
border: 4px solid #667eea;
|
|
}
|
|
|
|
.back-link {
|
|
display: inline-block;
|
|
margin-bottom: 1rem;
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.back-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.section {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.section h3 {
|
|
color: #2c3e50;
|
|
border-bottom: 2px solid #ecf0f1;
|
|
padding-bottom: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.experience-item,
|
|
.education-item {
|
|
margin-bottom: 1rem;
|
|
padding-left: 1rem;
|
|
border-left: 3px solid #667eea;
|
|
}
|
|
|
|
.skills-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.skill-tag {
|
|
background: #667eea;
|
|
color: white;
|
|
padding: 0.3rem 0.8rem;
|
|
border-radius: 20px;
|
|
font-size: 0.9rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<a href="../index.html" class="back-link">← Back to Student Directory</a>
|
|
|
|
<div class="resume-container">
|
|
<div class="resume-header">
|
|
<img src="../img/hugo-laurent.jpg" alt="Hugo Laurent" class="resume-photo">
|
|
<h1>Hugo Laurent</h1>
|
|
<h2>Industrial Engineering Student</h2>
|
|
<p>Email: hugo.laurent@school.edu | Phone: +33 6 44 55 66 77</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>About Me</h3>
|
|
<p>Motivated industrial engineering student with expertise in process optimization and lean
|
|
manufacturing. Passionate about improving operational efficiency and implementing Industry 4.0
|
|
technologies.</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Education</h3>
|
|
<div class="education-item">
|
|
<h4>École d'Ingénieurs - Industrial Engineering</h4>
|
|
<p><strong>2nd Year</strong> | 2024 - 2027</p>
|
|
<p>Specialization in Operations Research and Supply Chain</p>
|
|
<p>GPA: 16.0/20</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Experience</h3>
|
|
<div class="experience-item">
|
|
<h4>Operations Intern</h4>
|
|
<p><strong>Manufacturing Solutions Inc.</strong> | Summer 2024</p>
|
|
<p>Analyzed production workflows and implemented lean manufacturing principles, reducing waste
|
|
by 20%</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Skills</h3>
|
|
<div class="skills-list">
|
|
<span class="skill-tag">Lean Manufacturing</span>
|
|
<span class="skill-tag">Six Sigma</span>
|
|
<span class="skill-tag">Process Optimization</span>
|
|
<span class="skill-tag">Supply Chain Management</span>
|
|
<span class="skill-tag">Statistical Analysis</span>
|
|
<span class="skill-tag">Project Management</span>
|
|
<span class="skill-tag">ERP Systems</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Projects</h3>
|
|
<div class="experience-item">
|
|
<h4>Smart Factory Simulation</h4>
|
|
<p>Developed a digital twin model for optimizing production line efficiency using IoT sensors
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |