-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
56 lines (53 loc) · 2.47 KB
/
about.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>About Me - Ryan Fritz</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- Add any additional CSS files here -->
</head>
<body id="page-top">
<!-- Navbar Placeholder -->
<div id="nav-placeholder"></div>
<script src="js/nav.js"></script>
<!-- Main Content -->
<div class="container py-5">
<section id="about">
<div class="row profile-container mb-5 align-items-center">
<div class="col-lg-3 col-md-4 mb-4 text-center mx-auto">
<img src="png/FritzPic.png" alt="Ryan Fritz" class="profile-pic img-fluid rounded mx-auto d-block">
</div>
<div class="col-lg-9 col-md-8 mb-4">
<div class="profile-text text-center text-md-left">
<p class="lead">
Hi there! I'm Ryan Fritz, a research assistant at the Laboratory of Computational Neuroimaging (LCN), where I work with Doug Greve, Adrian Dalca, and Bruce Fischl. My focus is on cognitive neuroscience, particularly in understanding learning and memory. I hope to advance our understanding of memory, learning, and plasticity through developing novel neurostimulation and neuropharmacological approaches.
</p>
<!-- Social Icons -->
<div class="social-icons mt-4">
<a href="https://www.linkedin.com/in/ryan-fritz-9212b9187/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://x.com/R2Fritz" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://github.com/ryan-fritz" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.researchgate.net/profile/Ryan-Fritz-3" target="_blank">
<i class="fab fa-researchgate"></i>
</a>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Bootstrap JS Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/activePage.js"></script>
</body>
</html>