-
Notifications
You must be signed in to change notification settings - Fork 2
/
team.html
59 lines (43 loc) · 1.63 KB
/
team.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<script src="head.js"></script>
<title>HuskySat Team</title>
</head>
<body>
<script src="header.js"></script>
<main>
<h1 style="max-width: 80%;">Meet the Husky Satellite Lab Team</h1>
<p class="subtitle" style="width: 380px">
Our team is composed primarily of UW students of
all backgrounds and levels of experience, as well as
mentors from the local aerospace industry.
</p>
<h2>Leadership<a href="#leadership" class="anchor" id="leadership"><span
class="material-symbols-outlined">link</span></a>
</h2>
<div class="card-grid" style="max-width: 60rem;">
<script src="team.js" team="leadership"></script>
</div>
<h2>Members<a href="#members" class="anchor" id="members"><span class="material-symbols-outlined">link</span></a>
</h2>
<div class="card-grid" style="max-width: 60rem;">
<script src="team.js" team="members"></script>
</div>
<h2>Alumni<a href="#alumni" class="anchor" id="alumni"><span class="material-symbols-outlined">link</span></a></h2>
<div class="card-grid">
<div class="card" style="max-width: 400px;">
<div class="card-img-container">
<img class="card-img" src="/images/members/winglee.jpg" style="max-width: 400px;">
</div>
<p class="card-title-left">Professor Robert Winglee</p>
<p class="card-text">Faculty Advisor & Principal Investigator</p>
</div>
</div>
<div class="card-grid" style="max-width: 80rem;">
<script src="team.js" team="alumni"></script>
</div>
</main>
<script src="footer.js"></script>
</body>
</html>