-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
69 lines (64 loc) · 2.53 KB
/
Copy pathcontact.html
File metadata and controls
69 lines (64 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - BioComs Lab</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/contact.css">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
</head>
<body>
<!-- Header -->
<header>
<div class="logo">
<img src="assets/Logo.png" alt="BioComs Lab Logo">
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="people.html">People</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
</header>
<!-- Intro Section -->
<section class="intro-contact">
<h1>Contact</h1>
</section>
<!-- Contact Description Section -->
<section class="contact-description">
<p>
If you are seeking research support, collaborative opportunities, or are a prospective student exploring potential programs, please email
<strong><a href="mailto:[email protected]">Dr. Erliang Zeng</a></strong>.
</p>
<p>Our current students are from:</p>
</section>
<!-- Interdisciplinary Programs Section -->
<section class="programs-section">
<ul class="programs-list">
<li>
<a href="https://cs.uiowa.edu/graduate/phd-informatics" target="_blank">Interdisciplinary Graduate Program in Informatics</a>
</li>
<li>
<a href="https://toxicology.grad.uiowa.edu/program-overview" target="_blank">Interdisciplinary Graduate Program in Human Toxicology</a>
</li>
<li>
<a href="https://www.public-health.uiowa.edu/phd-biostatistics/" target="_blank">PhD in Biostatistics, College of Public Health</a>
</li>
</ul>
</section>
<!-- JS -->
<script src="js/contact.js"></script>
<!-- Footer -->
<footer>
<p>© 2024 BioComs Lab | University of Iowa</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>