-
Notifications
You must be signed in to change notification settings - Fork 0
/
posters.html
165 lines (141 loc) · 4.64 KB
/
posters.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Remy's conference posters presented in various neuroscience forums.">
<title>Abstracts & Posters | Remy Cohan</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
line-height: 1.7;
color: #333;
background: linear-gradient(135deg, #f7f9fc, #dfe6e9);
}
header {
background: #2E86C1;
color: white;
text-align: center;
padding: 2rem 0;
font-size: 2.5rem;
font-weight: 600;
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
nav {
display: flex;
justify-content: center;
gap: 20px;
padding: 10px 0;
background-color: #333;
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s, transform 0.2s;
}
nav a:hover {
background-color: #555;
transform: scale(1.05);
}
.sidebar {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 250px;
background-color: #34495e;
padding: 20px 0;
box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
}
.sidebar h3,
.sidebar a {
color: white;
margin-left: 20px;
text-decoration: none;
display: block;
margin-bottom: 20px;
transition: color 0.3s;
}
.sidebar a:hover {
color: #bdc3c7;
}
main {
margin-left: 270px;
padding: 40px;
background-color: #ffffff;
box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
h1 {
font-weight: 600;
margin-bottom: 20px;
}
/* Mobile Responsive Code */
@media (max-width: 768px) {
.sidebar {
position: initial;
height: auto;
width: 100%;
display: none; /* Hidden by default, toggled via JS */
}
main {
margin-left: 0;
}
nav {
flex-direction: column;
}
nav a {
margin: 5px 0;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>Remy Cohan</header>
<!-- Navigation -->
<nav>
<a href="index.html">Home</a>
<a href="Projects.html">Current Projects</a>
<a href="nifti_viewer.html">Interactive MRI Viewer</a>
<a href="simulations_ml.html">Simulation and ML</a>
<a href="plots.html">Statistics and Plotting in Python & R</a>
<a href="neuro_analysis.html">Neuroimaging Analysis Scripts</a>
</nav>
<!-- Sidebar -->
<aside class="sidebar">
<h3>Quick Links</h3>
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</aside>
<!-- Main Content -->
<main>
<h1>Abstracts & Posters</h1>
<p>Below are some of my abstracts and posters:</p>
<!-- Section for CAN2022 poster Link -->
<h2>Canadian Association for Neuroscience (2022)|Theta Burst Stimulation and Resting State Functional Connectivity </h2>
<img src="images/CAN2022_Poster_Study_Remy_Cohan.png" alt="Study Design" style="max-width:100%; height:auto;">
<!-- Inserting a second image -->
<img src="images/CAN2022_Poster_Remy_Cohan.png" alt="ROIs" style="max-width:100%; height:auto;">
<!-- Inserting PDF -->
<embed src="PDFs/CAN2022_RC .pdf" type="application/pdf" width="100%" height="600px" />
<p>The paper has been published, check it out here:</p>
<a href="https://pubmed.ncbi.nlm.nih.gov/37062900/" target="_blank">View the paper</a>
</section>
</main>
<script>
// Simple JS for toggling sidebar for mobile views
function toggleSidebar() {
var sidebar = document.querySelector('.sidebar');
sidebar.style.display = sidebar.style.display === 'none' ? 'block' : 'none';
}
</script>
</body>
</html>