-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalumni.html
55 lines (43 loc) · 2.41 KB
/
alumni.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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div id="nav"></div>
<div id="content">
<div id="picture-header"></div>
<div class="title-container">
<div class="w3-center title">
<h1 class="blue">Gamma Pi Alumni Darts</h1>
</div>
</div>
<div class="w3-container w3-padding-32 w3-center" id="darts" style="background-color: #DFDFDF; border-top: 2px solid #09268a; border-bottom: 2px solid #09268a;">
<button class="w3-button w3-section dart-button" onclick="current()">
<i class="fa-solid fa-file-lines"></i>  This Month's Alumni Dart
</button>
<button class="w3-button w3-section dart-button" onclick="archives()">
<i class="fa-solid fa-folder-open"></i>  Dart Archives
</button>
<iframe id="dart-current" class="dart w3-show" src="https://docs.google.com/document/d/e/2PACX-1vS_dHj9HAg5AFCE0nv4ZAhF23F97ezQPzWlmMtstTN8Pkcl8hKJCs7OdH4VqZ03d2gEBpo_3hFPZOT2/pub?embedded=true" frameborder="0"></iframe>
<iframe id="dart-archives" class="dart w3-hide" src="https://docs.google.com/document/d/e/2PACX-1vRdLkUAK2e4LfZvksUSt5lLBPBRF7OuJJjg1JjBJDVWFRWYmfsJg0ljuRgOPicyM7cN_scM4NuAyLW2/pub?embedded=true" frameborder="0"></iframe>
</div>
</div>
<div id="footer"></div>
</body>
<script src="static/script.js"></script>
<script type="text/javascript">
function current() {
document.getElementById("dart-current").classList.add("w3-show");
document.getElementById("dart-current").classList.remove("w3-hide");
document.getElementById("dart-archives").classList.add("w3-hide");
document.getElementById("dart-archives").classList.remove("w3-show");
}
function archives() {
document.getElementById("dart-archives").classList.add("w3-show");
document.getElementById("dart-archives").classList.remove("w3-hide");
document.getElementById("dart-current").classList.add("w3-hide");
document.getElementById("dart-current").classList.remove("w3-show");
}
</script>
</html>