134 lines
No EOL
4.5 KiB
HTML
134 lines
No EOL
4.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>Gabrielle Simon - 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/gabrielle-simon.jpg" alt="Gabrielle Simon" class="resume-photo">
|
|
<h1>Gabrielle Simon</h1>
|
|
<h2>Chemical Engineering Student</h2>
|
|
<p>Email: gabrielle.simon@school.edu | Phone: +33 6 11 22 33 55</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>About Me</h3>
|
|
<p>Enthusiastic chemical engineering student with a passion for sustainable chemistry and green
|
|
technology. Focused on developing environmentally friendly industrial processes and renewable
|
|
energy solutions.</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Education</h3>
|
|
<div class="education-item">
|
|
<h4>École d'Ingénieurs - Chemical Engineering</h4>
|
|
<p><strong>1st Year</strong> | 2024 - 2027</p>
|
|
<p>Foundation in Process Engineering and Green Chemistry</p>
|
|
<p>GPA: 16.2/20</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Skills</h3>
|
|
<div class="skills-list">
|
|
<span class="skill-tag">ChemCAD</span>
|
|
<span class="skill-tag">Process Simulation</span>
|
|
<span class="skill-tag">Laboratory Techniques</span>
|
|
<span class="skill-tag">Organic Chemistry</span>
|
|
<span class="skill-tag">Thermodynamics</span>
|
|
<span class="skill-tag">Safety Protocols</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Projects</h3>
|
|
<div class="experience-item">
|
|
<h4>Biodegradable Plastic Research</h4>
|
|
<p>First-year research project on developing eco-friendly plastic alternatives from agricultural
|
|
waste</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |