-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nasim's Research Website</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header class="academic-header">
<div class="header-title">Academic</div>
<nav class="main-nav">
<a href="index.html" class="active">Home</a>
<a href="research.html">Research Interests</a>
<a href="publications.html">Publications</a>
<a href="contact.html">Contact</a>
</nav>
<div class="theme-toggle">
<i class="fas fa-moon"></i>
</div>
</header>
<main class="container">
<section class="biography-section">
<div class="profile-container">
<div class="profile-image">
<img src="photo.jpg" alt="Profile Picture">
</div>
<div class="profile-links">
<a href="mailto:[email protected]"><i class="fas fa-envelope"></i></a>
<a href="#"><i class="fas fa-graduation-cap"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fas fa-file-alt"></i></a>
</div>
</div>
<div class="biography-content">
<h1>Biography</h1>
<p>I am a PhD candidate at the Robarts Institute in London, Ontario, exploring the dynamics of neural mechanisms of learning.
Working on neurophysiological mechanisms underlying epilepsy and memory; I focus on the distinct yet interconnected roles of interictal epileptiform discharges (IEDs) and sharp wave ripples (SWRs) in human brain function. My work addresses critical challenges in differentiating IEDs, which serve as biomarkers for seizure activity, from SWRs, which play an essential role in memory processes and spatial navigation. Through advanced analysis techniques like wavelet analysis of intracerebral EEG, I explore the dynamic frequency ranges and characteristics of these neurophysiological events to improve seizure detection and enhance our understanding of cognitive processes. Additionally, I examine how hippocampal SWRs facilitate flexible learning and memory consolidation, particularly during associative and spatial tasks, contributing valuable insights into how these neural oscillations support adaptive learning and memory formation in humans. My research aims to bridge clinical neurophysiology with cognitive neuroscience, advancing both diagnostic tools and foundational knowledge of brain function.
<div class="education-section">
<h2>Education</h2>
<div class="education-item">
<i class="fas fa-graduation-cap"></i>
<div class="education-details">
<p class="degree">PhD Candidate in Neuroscience</p>
<p class="institution">Robarts Institute, London, Ontario</p>
<p class="year">Present</p>
</div>
</div>
</div>
</div>
</section>
</main>
</body>
</html>