-
Notifications
You must be signed in to change notification settings - Fork 1
/
officers.html
57 lines (47 loc) · 1.49 KB
/
officers.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<title>UMN Kernel Object</title>
</head>
<body>
<header class="w3-container">
<h1>UMN Kernel Object</h1>
<hr>
<div class="w3-bar w3-white w3-large">
<a href="index.html" class="w3-bar-item w3-button w3-mobile">Home</a>
<a href="about.html" class="w3-bar-item w3-button w3-mobile">About</a>
<a href="calendar.html" class="w3-bar-item w3-button w3-mobile">Calendar</a>
<a href="officers.html" class="w3-bar-item w3-button w3-mobile">Officers</a>
</div>
</header>
<div class="w3-container">
<div class="w3-container">
<h1>Officers</h1>
<ul>
<li>President: Jake Freeland </li>
<li>Vice President: Shaun Loo</li>
<li>Treasurer: Angie Chen</li>
<li>Secretary: Hanan Abdirahman</li>
<li>Communications Director: Caleb Tracy</li>
</ul>
</div>
</div>
<div class="w3-container">
<div class="w3-container">
<h1>Advisors: </h1>
<ul>Faculty Advisor: Jack Kolb. Thats it ladies and gentlemen. </ul>
<ul>Alex Elder: Linux kernel maintainer by day. Amazing chef by night. </ul>
</div>
</div>
<footer class="w3-container">
<hr>
<div class="w3-container w3-center">
<h5>Footer</h5>
<p>Footer information goes here</p>
</div>
</footer>
</body>
</html>