-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
41 lines (41 loc) · 1.59 KB
/
contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Physics Concerto</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="page-header">
<h1>Contact Us</h1>
</header>
<nav>
<a href="home">Home</a>
<a href="logistics">Logistics</a>
<a href="calendar">Calendar</a>
<a href="contact">Contact Us</a>
</nav>
<main>
<section>
<h2>Get in Touch</h2>
<p>
If you'd like to get involved, have questions, or need more information about the Physics Concerto seminars, we'd love to hear from you! Please reach out to our organizers:
</p>
<ul>
<li><strong>Casey Christian</strong>: crchristian(at)utexas.edu</li>
<li><strong>Brian Kent</strong>: brian_kent(at)utexas.edu</li>
<li><strong>Inhwan Kim</strong>: inhwankim(at)utexas.edu</li>
<li><strong>Sparsh Mishra</strong>: sparsh(at)utexas.edu</li>
<li><strong>Gabriele Montefalcone</strong>: montefalcone(at)utexas.edu</li>
<li><strong>Andrew Murphy</strong>: andrew.murphy(at)utexas.edu</li>
<li><strong>Katie Rink</strong>: krink(at)utexas.edu</li>
</ul>
</section>
</main>
<footer>
<p>Supported by the Weinberg Institute for Theoretical Physics, Department of Physics, University of Texas.</p>
<p>© 2023 Physics Concerto Seminar Series</p>
</footer>
</body>
</html>