-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
59 lines (54 loc) · 1.89 KB
/
resume.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Resume - Alain Lebret</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</nav>
</header>
<section id="resume">
<div class="container">
<h2>Resume</h2>
<h3>Education</h3>
<p>Ph.D. in image and signal processing, Paris-Est University, 2013</p>
<p>M.Sc. in biomedical engineering, Paris-Est University, 2010</p>
<p>M.Sc. in computer science, Paris-Est University, 2002</p>
<p>Certificate of aptitude for professorship in technical teaching, computer engineering, 1994</p>
<p>B.Sc. in electrical engineering, Sorbonne Paris-Nord University, 1993</p>
<h3>Work Experience</h3>
<p>Lecturer in computer science, ENSICAEN, 2016 - to date</p>
<!--
<h3>Skills</h3>
<ul>
<li>Unix system programming</li>
<li>Image processing</li>
<li>Language programming[Skill 3]</li>
</ul>
<h3>Achievements</h3>
<ul>
<li>Senior Lecturer at ENSICAEN</li>
<li>[Achievement 2]</li>
</ul>
-->
</div>
</section>
<section id="footer">
<div class="container">
<footer>
<p>Contact: alain.lebret@ensicaen.fr / My <a href="">Github repository</a></p>
</footer>
</div>
</section>
</body>
</html>