Skip to content

Commit

Permalink
initial layout generated with ChatGPT
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan DeKraker - B. Bernhardt Lab committed May 1, 2023
1 parent 08c041e commit 0094d84
Show file tree
Hide file tree
Showing 6 changed files with 164 additions and 1 deletion.
49 changes: 49 additions & 0 deletions background.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.png" 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>
Empty file added contact.html
Empty file.
84 changes: 84 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/* Global Styles */
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
background-color: #f7f7f7;
margin: 0;
padding: 0;
}

a {
color: #0077cc;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

nav {
background-color: #0077cc;
padding: 10px 20px;
}

nav ul {
margin: 0;
padding: 0;
list-style-type: none;
display: flex;
justify-content: space-between;
align-items: center;
}

nav li {
margin: 0;
padding: 0;
}

nav li a {
color: #fff;
font-size: 18px;
}

header {
background-color: #fff;
padding: 20px;
text-align: center;
}

main {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}

section {
margin-bottom: 30px;
}

h1, h2, h3 {
margin-top: 0;
}

h1 {
font-size: 36px;
font-weight: bold;
}

h2 {
font-size: 24px;
font-weight: bold;
}

p {
margin-bottom: 10px;
}

footer {
background-color: #333;
color: #fff;
padding: 10px 20px;
text-align: center;
}
32 changes: 31 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
Hello World
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Professional Website</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>Welcome to My Professional Website</h1>
</header>
<main>
<section>
<h2>About Me</h2>
<p>I am a postdoc at McGill University working on neuroimaging of the hippocampus. </p>
</section>
</main>
<footer>
<p>Copyright © 2023 - Jordan DeKraker</p>
</footer>
</body>
</html>
Empty file added research.html
Empty file.
Empty file added software.html
Empty file.

0 comments on commit 0094d84

Please sign in to comment.