-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
184 lines (160 loc) · 4.61 KB
/
index.html
File metadata and controls
184 lines (160 loc) · 4.61 KB
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home - NerDS Lab</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Major+Mono+Display&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
body {
margin: 0;
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: #222;
background-color: #fff;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.hero {
position: relative;
width: 100%;
height: 70vh;
background-image: url('images/mainimg2.png');
background-size: cover;
background-position: center;
}
.hero-text {
position: absolute;
bottom: 30px;
left: 40px;
right: 40px; /* Add this to allow full width */
background-color: rgba(0, 0, 0, 0.65);
color: white;
padding: 30px 40px; /* Increased padding */
border-radius: 8px;
font-size: 1.3em; /* Increase font size */
line-height: 1.6;
max-width: 70%; /* Allow it to take more space */
}
header {
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 1em 2em;
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(255, 255, 255, 0.85);
z-index: 10;
box-sizing: border-box;
flex-wrap: wrap;
}
.logo-title {
display: flex;
align-items: center;
}
.logo-title img {
height: 60px;
margin-right: 15px;
}
.logo-title h1 {
margin: 0;
font-family: 'Major Mono Display', monospace;
font-size: 48px;
font-weight: 400;
color: #222;
text-transform: none;
}
nav {
display: flex;
gap: 6px;
flex-wrap: wrap;
margin-top: 10px;
}
nav a {
text-decoration: none;
color: #333;
font-weight: 500;
font-size: 0.95em;
padding: 0 6px;
}
nav a:hover {
color: #007acc;
}
main {
max-width: 800px;
margin: 0 auto;
padding: 3em 2em 2em;
flex: 1;
position: relative;
}
h2 {
font-size: 1.5em;
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
margin-bottom: 1em;
}
footer {
text-align: center;
margin-top: 4em;
padding: 2em;
background: #f5f5f5;
font-size: 0.9em;
}
footer a {
color: #0066cc;
text-decoration: none;
}
@media (max-width: 600px) {
header {
flex-direction: column;
align-items: flex-start;
}
nav {
justify-content: center;
width: 100%;
margin-top: 1em;
}
.hero {
height: 35vh; /* cropped height for mobile */
background-position: center top;
}
.hero-text {
font-size: 1.2em;
padding: 20px;
left: 10px;
right: 10px;
}
}
</style>
</head>
<body>
<div class="hero">
<header>
<div class="logo-title">
<img src="images/logo_outline.png" alt="nerds lab logo">
<h1>nerds_lab</h1>
</div>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="people.html">People</a>
<a href="publications.html">Publications</a>
<a href="nerdslabcode.html">Code</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<div class="hero-text">
We develop machine learning tools to decode brain activity and uncover the computational principles behind intelligence and behavior.
</div>
</div>
<main>
<h2>Welcome to the NerDS Lab</h2>
<p>The Neural Data Science (NerDS) Lab at the University of Pennsylvania develops next-generation machine learning methods to unlock the mysteries of the brain. We are driven by the belief that artificial intelligence and neuroscience can inform each other, and that building scalable, interpretable models of brain activity will lead to breakthroughs in both fields.</p>
<p>Our vision is to create models that generalize across individuals, tasks, brain regions, and even species—models that reveal latent computational principles of biological intelligence. To achieve this, we integrate advances in deep learning, self-supervised learning, and representation alignment with cutting-edge neural datasets.</p>
<p>In parallel, we are committed to building open-source software and reproducible research tools that empower scientists to analyze complex time series data and neural recordings at scale. Whether it’s decoding neural dynamics or understanding the structure of behavior, our goal is to develop technologies that not only work, but also help explain why.</p>
</main>
</body>
</html>