-
Notifications
You must be signed in to change notification settings - Fork 0
/
background.html
49 lines (49 loc) · 2.3 KB
/
background.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Professional Website - Background</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="background.html">Background</a></li>
<li><a href="research.html">Research Highlights</a></li>
<li><a href="software.html">Software</a></li>
<li><a href="contact.html">Contact/Links</a></li>
</ul>
</nav>
<header>
<h1>Background</h1>
</header>
<main>
<section>
<h2>About Me</h2>
<img src="img/headshot.JPG" alt="Headshot">
<p>I am a neuroscientist with expertise in MRI and cognitive psychology. My research interests include the neural basis of memory and navigation, the development of advanced MRI analysis techniques, and the application of these techniques to understanding brain disorders such as major depressive disorder and Alzheimer's disease.</p>
</section>
<section>
<h2>Education</h2>
<ul>
<li>Bachelor of Science in Neuroscience, Carleton University, Ottawa</li>
<li>Master of Science in Behavioural and Cognitive Psychology, Western University, London</li>
<li>Doctor of Philosophy in Neuroscience, Western University, London</li>
</ul>
</section>
<section>
<h2>Research Experience</h2>
<ul>
<li>Undergraduate Research Assistant, Carleton University, Ottawa, studying rodent cognition with a focus on memory and navigation</li>
<li>Graduate Research Assistant, Western University, London, working with Dr Stefan Kohler looking at neuroimaging of the hippocampus and behavioural tests of pattern separation in major depressive disorder</li>
<li>PhD Candidate, Western University, London, working with Dr Ali Khan and Dr Stefan Kohler to develop the software application "HippUnfold" designed to work with 7T MRI images in Canada and leverage prior knowledge about hippocampal shape and ontogeny</li>
<li>Postdoctoral Fellow, McGill University, Montreal, working with Dr Alan Evans and Dr Boris Bernhardt examining hippocampal microstructure in BigBrain, performing histology-scale technical refinements to HippUnfold, and combining data across MRI, multimodal histology, fMRI, and iEEG</li>
</ul>
</section>
</main>
<footer>
<p>Copyright © 2023 - Jordan DeKraker</p>
</footer>
</body>
</html>