-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
366 lines (321 loc) · 9.17 KB
/
Copy pathindex.html
File metadata and controls
366 lines (321 loc) · 9.17 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MIT Critical Data</title>
<link rel="icon" href="favicon.ico" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--mit-red: #A31F34;
--dark: #1a1a1a;
--mid: #444;
--light: #f5f5f5;
--white: #ffffff;
--border: #e0e0e0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: var(--dark);
line-height: 1.6;
}
a { color: var(--mit-red); text-decoration: none; }
a:hover { text-decoration: underline; }
/* NAV */
nav {
background: var(--dark);
padding: 0 2rem;
display: flex;
align-items: center;
justify-content: space-between;
height: 60px;
position: sticky;
top: 0;
z-index: 100;
}
.nav-brand {
display: flex;
align-items: center;
gap: 0.75rem;
color: var(--white);
font-weight: 700;
font-size: 1rem;
letter-spacing: 0.02em;
}
.nav-brand span.mit {
color: var(--mit-red);
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}
.nav-links a {
color: #ccc;
font-size: 0.9rem;
letter-spacing: 0.03em;
text-transform: uppercase;
}
.nav-links a:hover {
color: var(--white);
text-decoration: none;
}
/* HERO */
.hero {
background: var(--mit-red);
color: var(--white);
padding: 6rem 2rem;
text-align: center;
}
.hero h1 {
font-size: clamp(1.75rem, 4vw, 3rem);
font-weight: 700;
max-width: 800px;
margin: 0 auto 1.5rem;
line-height: 1.25;
}
.hero p {
font-size: clamp(1rem, 2vw, 1.2rem);
max-width: 640px;
margin: 0 auto 2rem;
opacity: 0.92;
}
.hero-actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 0.75rem 1.75rem;
border-radius: 4px;
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
transition: opacity 0.15s;
}
.btn:hover { opacity: 0.85; text-decoration: none; }
.btn-white {
background: var(--white);
color: var(--mit-red);
}
.btn-outline {
background: transparent;
color: var(--white);
border: 2px solid rgba(255,255,255,0.7);
}
/* STATS */
.stats {
background: var(--dark);
padding: 3.5rem 2rem;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 2rem;
max-width: 960px;
margin: 0 auto;
text-align: center;
}
.stat-item .number {
font-size: 2.25rem;
font-weight: 700;
color: var(--white);
}
.stat-item .label {
font-size: 0.85rem;
color: #aaa;
margin-top: 0.25rem;
text-transform: uppercase;
letter-spacing: 0.04em;
}
/* PILLARS */
.pillars {
padding: 5rem 2rem;
background: var(--white);
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-header h2 {
font-size: 1.75rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 0.5rem;
}
.section-header p {
color: var(--mid);
max-width: 560px;
margin: 0 auto;
}
.pillars-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
max-width: 960px;
margin: 0 auto;
}
.pillar-card {
padding: 2rem;
border: 1px solid var(--border);
border-radius: 6px;
border-top: 4px solid var(--mit-red);
}
.pillar-card h3 {
font-size: 1.15rem;
font-weight: 700;
margin-bottom: 0.75rem;
}
.pillar-card p {
font-size: 0.95rem;
color: var(--mid);
}
/* DATASETS */
.datasets {
padding: 5rem 2rem;
background: var(--light);
}
.datasets-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 960px;
margin: 0 auto;
}
.dataset-card {
background: var(--white);
padding: 2rem;
border-radius: 6px;
border: 1px solid var(--border);
}
.dataset-card h3 {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.dataset-card p {
font-size: 0.9rem;
color: var(--mid);
margin-bottom: 1rem;
}
.dataset-card a.link {
font-size: 0.875rem;
font-weight: 600;
color: var(--mit-red);
}
/* FOOTER */
footer {
background: var(--dark);
color: #999;
text-align: center;
padding: 2rem;
font-size: 0.85rem;
}
footer a {
color: #ccc;
}
/* RESPONSIVE */
@media (max-width: 600px) {
.nav-links { display: none; }
.hero { padding: 4rem 1.5rem; }
}
</style>
</head>
<body>
<nav>
<div class="nav-brand">
<span class="mit">MIT</span> Critical Data
</div>
<ul class="nav-links">
<li><a href="https://criticaldata.mit.edu/research">Research</a></li>
<li><a href="https://criticaldata.mit.edu/events">Events</a></li>
<li><a href="https://criticaldata.mit.edu/highlights">Highlights</a></li>
<li><a href="https://criticaldata.mit.edu/community">Community</a></li>
</ul>
</nav>
<section class="hero">
<h1>An ecosystem that improves healthcare with data science and community bridging</h1>
<p>Uniting clinicians, data scientists, engineers, and research communities worldwide to revolutionize healthcare in a way that is democratised, decentralised, and equitable.</p>
<div class="hero-actions">
<a class="btn btn-white" href="https://criticaldata.mit.edu">Visit criticaldata.mit.edu</a>
<a class="btn btn-outline" href="https://physionet.org">Explore Datasets</a>
</div>
</section>
<section class="stats">
<div class="stats-grid">
<div class="stat-item">
<div class="number">260+</div>
<div class="label">Open health datasets</div>
</div>
<div class="stat-item">
<div class="number">80,000+</div>
<div class="label">Dataset users</div>
</div>
<div class="stat-item">
<div class="number">10,000+</div>
<div class="label">MIMIC citations</div>
</div>
<div class="stat-item">
<div class="number">2,000+</div>
<div class="label">Publications (4 years)</div>
</div>
<div class="stat-item">
<div class="number">100+</div>
<div class="label">Events in 39 countries</div>
</div>
<div class="stat-item">
<div class="number">5,000+</div>
<div class="label">People trained in AI</div>
</div>
</div>
</section>
<section class="pillars">
<div class="section-header">
<h2>What We Do</h2>
<p>MIT Critical Data works across three core areas to advance equitable AI in healthcare.</p>
</div>
<div class="pillars-grid">
<div class="pillar-card">
<h3>Research</h3>
<p>Leading the scientific community in achieving AI health equity through innovative studies on racial and ethnic health disparities, algorithmic bias, and mortality prediction.</p>
</div>
<div class="pillar-card">
<h3>Events</h3>
<p>Developing data communities and local AI capacity through global datathons, workshops, and training programs across 39 countries.</p>
</div>
<div class="pillar-card">
<h3>Resources</h3>
<p>Sharing open-source health datasets, software, and tools for healthcare innovation — freely accessible to researchers everywhere.</p>
</div>
</div>
</section>
<section class="datasets">
<div class="section-header">
<h2>Open Datasets & Platforms</h2>
<p>World-class, freely accessible clinical data enabling research at every level.</p>
</div>
<div class="datasets-grid">
<div class="dataset-card">
<h3>MIMIC Database</h3>
<p>One of the largest freely accessible critical care datasets, with over 10,000 citations by researchers worldwide.</p>
<a class="link" href="https://mimic.mit.edu/">mimic.mit.edu →</a>
</div>
<div class="dataset-card">
<h3>PhysioNet</h3>
<p>A platform housing hundreds of open health datasets and open-source software tools for biomedical research.</p>
<a class="link" href="https://physionet.org/">physionet.org →</a>
</div>
<div class="dataset-card">
<h3>eICU-CRD</h3>
<p>A freely available multi-center critical care database complementing MIMIC, supporting diverse ICU research.</p>
<a class="link" href="https://eicu-crd.mit.edu/">eicu-crd.mit.edu →</a>
</div>
</div>
</section>
<footer>
<p>© 2026 MIT Critical Data · <a href="https://accessibility.mit.edu">Accessibility</a> · <a href="https://criticaldata.mit.edu">criticaldata.mit.edu</a></p>
</footer>
</body>
</html>