-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (93 loc) · 5.62 KB
/
index.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Official website of Jules Gomel, a researcher, brain enthusiast and loving video games, board games, reading and music. Explore my work and my hobbies.">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="assets/img/icon_fav.png" type="image/png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<script src="https://kit.fontawesome.com/f980ba732e.js" crossorigin="anonymous"></script>
<title>Jules Gomel - Researcher and brain enthusiast</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8CK3QB9W5T"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8CK3QB9W5T');
</script>
</head>
<body>
<header>
<nav class="navbar">
<ul class="nav-list">
<li><a href="index.html"><i class="fas fa-user"></i> About Me</a></li>
<li><a href="neuro.html"><i class="fas fa-brain"></i> Research</a></li>
<li><a href="games.html"><i class="fas fa-chess-board"></i> Hobbies</a></li>
<li><a href="books.html"><i class="fas fa-book"></i> Books</a></li>
<li><a href="music.html"><i class="fas fa-music"></i> Music</a></li>
</ul>
</nav>
<section class="profile-section">
<img src="assets/img/julesGL.jpg" alt="Jules GOMEL" class="profile-image">
<div class="header-content">
<h1 class="retro-font">Jules GOMEL</h1>
</div>
</section>
</header>
<main>
<section id="about-me">
<h2>About me</h2>
<p>Welcome to my website ! I'm <b>Jules GOMEL</b>, a final year French master student in ISAE-Supaero MSc, focused on Neurosciences and AI.</p>
<p>I'm currently doing my end-of-study internship as a <b>Research Engineer Intern</b> in Neuroengineering at ISAE-Supaero <a href="https://websites.isae-supaero.fr/experiences-en-neuroergonomie/">Neuroergonomics and Human Factor lab</a> under the supervision of Dr. Frédéric Dehais.</p>
<p>I will be starting a PhD focused on BCI in late 2024 so let's keep contact if you want to know more ! I am very active on <a href="https://www.linkedin.com/in/julesgomel/">LinkedIn</a>, where I talk about research !</p>
</section>
<section id="news">
<div class="project-list">
<div class="project-item">
<img src="assets/img/cool_brain.png" alt="BCI state of the art" class="project-image">
<div class="project-details">
<h4 class="project-title">BCI State of the art</h4>
<p class="project-description">Since the beginning of September 2024, I have been writing my Master Thesis about my internship at ISAE-Supaero.</p>
<p class="project-description">I spent a lot of time working on the state-of-the-art of BCI : it's fascinating!</p>
</div>
</div>
<div class="project-item">
<img src="assets/img/games.png" alt="Board Games week ISAE-Supaero" class="project-image">
<div class="project-details">
<h4 class="project-title">Board Games Week at ISAE-Supaero!</h4>
<p class="project-description">As a big fan of board games, it is a pleasure to announce you the board games week at ISAE-Supaero ! It will be from September 23rd to 26th !</p>
<a href="https://iris.isae-supaero.fr/Agenda-de-l-Aerotheque-de-septembre-a-decembre-2024" class="project-link">Check the program</a>
</div>
</div>
</div>
</section>
</main>
<footer>
<section id="quote">
<blockquote>
<p>"Man muss noch Chaos in sich haben, um einen tanzenden Stern gebären zu können."</p>
<cite> - Friedrich Nietzsche</cite>
</blockquote>
</section>
<section class="social-logos">
<a class="logo link-icon" href="https://github.com/JulesGL" target="_blank" alt="Jules GOMEL GitHub">
<i class="fa-brands fa-github"></i>
</a>
<a class="logo link-icon" href="mailto:[email protected]" target="_blank" alt="Jules Gomel Email">
<i class="fas fa-envelope"></i>
</a>
<a class="logo link-icon" href="https://www.linkedin.com/in/julesgomel/" target="_blank" alt="Jules GOMEL LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a class="logo link-icon" href="CV.pdf" download="CV_Jules_GOMEL.pdf" alt="Jules GOMEL Resume">
<i class="fas fa-file"></i>
</a>
</section>
<section class="bottom-section">
<p>© 2024 - Jules Gomel</p>
</section>
</footer>
</body>
</html>