-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (56 loc) · 2.34 KB
/
index.html
File metadata and controls
61 lines (56 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>CMU Accessibility Lunch</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap" />
<link rel="stylesheet" href="fonts.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<header class="site-header">
<div class="header-inner">
<h1>CMU Accessibility Lunch Seminar Series (2025 Spring)</h1>
<p class="subtitle">
How can AI drive accessibility research beyond prompt engineering?
</p>
</div>
</header>
<main>
<section class="intro">
<h2 class="section-title">About the CMU Accessibility Lunch Seminar</h2>
<p>
This seminar series explores the evolution and future directions of accessibility research and practice. Each week, we discuss diverse facets of accessible and assistive technologies, featuring speakers from academia, industry, and beyond. The seminar is organized by the
<a href="https://accessibility.cs.cmu.edu/" target="_blank" rel="noopener">Accessibility Research Group</a> at Carnegie Mellon University.
<a href="https://forms.gle/FeGjsByfQFbzRanm8" target="_blank" rel="noopener">[Sign Up Form]</a>
</p>
</section>
<section class="schedule">
<h2 class="section-title">Schedule</h2>
<div class="schedule-table-container">
<table class="schedule-table" id="schedule-table">
<caption class="sr-only">
Schedule of the CMU Accessibility Lunch Seminar. Columns are Date, Speaker(s), and Topic (with links to speaker websites or presentation materials).
</caption>
<thead>
<tr>
<th scope="col">Date</th>
<th scope="col">Speaker(s)</th>
<th scope="col">Topic</th>
</tr>
</thead>
<tbody>
<!-- Populated by JavaScript -->
</tbody>
</table>
</div>
</section>
</main>
<footer class="site-footer">
<p>© 2025 CMU Accessibility Lunch | All Rights Reserved (<a href="https://github.com/cmubiglab/lunch" target="_blank">Source Repo</a>)</p>
</footer>
<script src="script.js"></script>
</body>
</html>