forked from ASSETS-Conference/assets2023
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Volunteer / ASSETS 2025</title> | ||
|
||
<meta | ||
name="description" | ||
content="The 27th International ACM SIGACCESS Conference on Computers and Accessibility" | ||
/> | ||
<meta name="keywords" content="Accessibility, Technology, Conference, Assets 2025" /> | ||
<meta name="author" content="ACM SIGACCESS" /> | ||
|
||
<link rel="icon" href="favicon.svg" type="image/svg+xml" /> | ||
|
||
<!-- Preload stylesheets --> | ||
<link rel="preload" href="reset.css" as="style" /> | ||
<link rel="preload" href="styles.css" as="style" /> | ||
|
||
<!-- Load stylesheets --> | ||
<link rel="stylesheet" href="reset.css" /> | ||
<link rel="stylesheet" href="styles.css" /> | ||
|
||
<link rel="preload" href="setup.js" as="script" /> | ||
<script src="setup.js" defer></script> | ||
</head> | ||
<body> | ||
<nav id="nav-container" data-active="organizers"></nav> | ||
|
||
<main class="content-block-container"> | ||
<div class="grid-helper"> | ||
<div class="text-block"> | ||
<h1>Volunteers</h1> | ||
<p>If you'd like to get involved with organizing ASSETS 2025, you can fill out the forms below.</p> | ||
<ul> | ||
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLScKO3AQlGKWM_yOZOX7sSwKPGDz6xzH8urGeoxXtBohDrBxBw/viewform?usp=sf_link">Student volunteer interest form</a></li> | ||
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSedcLBDappGSjP7qGZ-utj2opua7Xaipu7fW7dJ1NTxi8rckA/viewform?usp=header">Volunteer to review for the conference</a></li> | ||
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSfYUhz4D7Do0Qb4UHf0z1p_prCTPf1d15nQykN7OGhFOhBNtQ/viewform?usp=sf_link">Volunteer for the organizing committee</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</main> | ||
|
||
<div id="footer-container"></div> | ||
</body> | ||
</html> |