-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (121 loc) · 4.12 KB
/
Copy pathindex.html
File metadata and controls
137 lines (121 loc) · 4.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI in Medical Education — Interactive Modules</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700&family=Source+Serif+4:wght@400;600;700&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Source Sans 3', sans-serif;
background: #f5f5f4;
color: #1a1a1a;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.header {
background: #fff;
border-bottom: 1px solid #e0e0e0;
padding: 1rem 2rem;
}
.header img {
height: 48px;
}
.hero {
text-align: center;
padding: 3rem 1.5rem 1.5rem;
}
.hero h1 {
font-family: 'Source Serif 4', serif;
font-size: 2rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.hero p {
font-size: 1.1rem;
color: #555;
max-width: 600px;
margin: 0 auto;
}
.modules {
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
padding: 2rem 1.5rem 4rem;
max-width: 900px;
margin: 0 auto;
}
.card {
background: #fff;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
padding: 2rem;
width: 380px;
display: flex;
flex-direction: column;
transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
box-shadow: 0 6px 20px rgba(0,0,0,0.12);
transform: translateY(-2px);
}
.card h2 {
font-family: 'Source Serif 4', serif;
font-size: 1.35rem;
margin-bottom: 0.75rem;
}
.card p {
color: #555;
line-height: 1.6;
flex: 1;
margin-bottom: 1.5rem;
}
.card a {
display: inline-block;
background: #8c1515;
color: #fff;
text-decoration: none;
padding: 0.65rem 1.5rem;
border-radius: 6px;
font-weight: 600;
text-align: center;
transition: background 0.2s;
}
.card a:hover {
background: #6f1010;
}
@media (max-width: 840px) {
.modules { flex-direction: column; align-items: center; }
.card { width: 100%; max-width: 440px; }
}
</style>
</head>
<body>
<header class="header">
<a href="https://med.stanford.edu/ai-in-meded.html" target="_blank">
<img src="ai-evaluation/assets/logo.png" alt="Stanford Medicine — AI in Medical Education">
</a>
</header>
<section class="hero">
<h1>AI in Medical Education</h1>
<p>Interactive learning modules from the Stanford Medicine AI in Medical Education program.</p>
</section>
<section class="modules">
<div class="card">
<h2>Explore AI Diagnostic Performance</h2>
<p>Learn to interpret AI performance metrics using a chest X-ray pneumonia detection model as an example. Adjust thresholds and see how sensitivity, specificity, PPV, NPV, and accuracy change in real time.</p>
<a href="ai-evaluation/">Launch Module</a>
</div>
<div class="card">
<h2>Data Security & AI: A HIPAA Module</h2>
<p>Explore data security fundamentals, HIPAA regulations, and responsible use of AI tools in clinical settings through interactive scenarios and knowledge checks.</p>
<a href="data-security/">Launch Module</a>
</div>
</section>
</body>
</html>