152 lines
No EOL
5.5 KiB
HTML
152 lines
No EOL
5.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>Florent Moreau - 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/florent-moreau.jpg" alt="Florent Moreau" class="resume-photo">
|
|
<h1>Florent Moreau</h1>
|
|
<h2>Aerospace Engineering Student</h2>
|
|
<p>Email: florent.moreau@school.edu | Phone: +33 6 99 88 77 66</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>About Me</h3>
|
|
<p>Passionate aerospace engineering student with dreams of contributing to space exploration and
|
|
aviation innovation. Specialized in aerodynamics and propulsion systems with hands-on experience
|
|
in rocket design.</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Education</h3>
|
|
<div class="education-item">
|
|
<h4>École d'Ingénieurs - Aerospace Engineering</h4>
|
|
<p><strong>3rd Year</strong> | 2023 - 2026</p>
|
|
<p>Specialization in Propulsion and Space Systems</p>
|
|
<p>GPA: 17.5/20</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Experience</h3>
|
|
<div class="experience-item">
|
|
<h4>Aerospace Engineering Intern</h4>
|
|
<p><strong>AeroSpace Dynamics</strong> | Summer 2024</p>
|
|
<p>Worked on computational fluid dynamics simulations for aircraft wing optimization</p>
|
|
</div>
|
|
<div class="experience-item">
|
|
<h4>Rocket Team Leader</h4>
|
|
<p><strong>University Space Club</strong> | 2024 - Present</p>
|
|
<p>Leading a team of 15 students in designing and building competition rockets</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Skills</h3>
|
|
<div class="skills-list">
|
|
<span class="skill-tag">CATIA</span>
|
|
<span class="skill-tag">ANSYS Fluent</span>
|
|
<span class="skill-tag">MATLAB/Simulink</span>
|
|
<span class="skill-tag">CFD Analysis</span>
|
|
<span class="skill-tag">Propulsion Systems</span>
|
|
<span class="skill-tag">Flight Dynamics</span>
|
|
<span class="skill-tag">Composite Materials</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Projects</h3>
|
|
<div class="experience-item">
|
|
<h4>Student Rocket Competition</h4>
|
|
<p>Designed and launched a rocket reaching 3000m altitude in national competition</p>
|
|
</div>
|
|
<div class="experience-item">
|
|
<h4>Drone Aerodynamics Study</h4>
|
|
<p>Optimized drone wing design using CFD simulations, improving efficiency by 15%</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |