estia-1a/DevWebStatique/trombinoscope/front/resumes/camille-bernard.html

153 lines
5.5 KiB
HTML
Raw Normal View History

2025-09-22 13:48:07 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Camille Bernard - 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/camille-bernard.jpg" alt="Camille Bernard" class="resume-photo">
<h1>Camille Bernard</h1>
<h2>Electrical Engineering Student</h2>
<p>Email: camille.bernard@school.edu | Phone: +33 6 55 44 33 22</p>
</div>
<div class="section">
<h3>About Me</h3>
<p>Innovative electrical engineering student specializing in embedded systems and IoT technologies.
Passionate about creating smart solutions for modern challenges through advanced electronics and
programming.</p>
</div>
<div class="section">
<h3>Education</h3>
<div class="education-item">
<h4>École d'Ingénieurs - Electrical Engineering</h4>
<p><strong>3rd Year</strong> | 2023 - 2026</p>
<p>Specialization in Embedded Systems and IoT</p>
<p>GPA: 17.2/20</p>
</div>
</div>
<div class="section">
<h3>Experience</h3>
<div class="experience-item">
<h4>Electronics Engineering Intern</h4>
<p><strong>SmartTech Solutions</strong> | Summer 2024</p>
<p>Developed IoT sensors for smart home applications using Arduino and Raspberry Pi</p>
</div>
<div class="experience-item">
<h4>Lab Assistant</h4>
<p><strong>Electronics Laboratory</strong> | 2024 - Present</p>
<p>Supporting circuit design and microcontroller programming courses</p>
</div>
</div>
<div class="section">
<h3>Skills</h3>
<div class="skills-list">
<span class="skill-tag">C/C++</span>
<span class="skill-tag">Arduino</span>
<span class="skill-tag">Raspberry Pi</span>
<span class="skill-tag">PCB Design</span>
<span class="skill-tag">VHDL</span>
<span class="skill-tag">FPGA</span>
<span class="skill-tag">Circuit Analysis</span>
<span class="skill-tag">IoT Protocols</span>
</div>
</div>
<div class="section">
<h3>Projects</h3>
<div class="experience-item">
<h4>Smart Home Automation System</h4>
<p>Designed a complete home automation system with mobile app control and voice recognition</p>
</div>
<div class="experience-item">
<h4>Wireless Sensor Network</h4>
<p>Created a mesh network of environmental sensors for campus monitoring</p>
</div>
</div>
</div>
</div>
</body>
</html>