-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollab.html
63 lines (50 loc) · 2.69 KB
/
collab.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
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>UWAGGS</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<a href="index.html"><img src="uwaggsLogo.png" alt="" class="main-menu"></a>
<ul id="left-nav">
<li><a href="resources.html" class="nav-link">Resources</a></li>
<li><a href="projects.html" class="nav-link">Projects</a></li>
<li><a href="deliverables.html" class="nav-link">Deliverables</a></li>
<li><a href="collab.html" class="nav-link">Collaboration Board</a></li>
<li><a href="jobs.html" class="nav-link">Job Board</a></li>
</ul>
<ul id="right-nav">
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLScXQDcEcnyehay8hTphzvxWqyYR8fbdHV66DK5gAsAc4ZLhZw/viewform" class="nav-link">Mailing List</a></li>
<li><a href="https://discord.com/invite/YeUSFXxmxZ" class="nav-link">Discord</a></li>
</ul>
<div class="dropdown">
<button onclick="toggleDropdown()" class="dropbtn">☰</button>
<div id="myDropdown" class="dropdown-content">
</div>
</div>
</nav>
<div class="outer-title">
<h1 class="inner-title">Collaboration Board</h1>
</div>
<div class="outer-content">
<div class="inner-content">
<div class="dropdown-items" id="dropdown-id">
<div class="item"><a href="index.html" class="dropdown-link">Home</a></div>
<div class="item"><a href="resources.html" class="dropdown-link">Resources</a></div>
<div class="item"><a href="projects.html" class="dropdown-link">Projects</a></div>
<div class="item"><a href="deliverables.html" class="dropdown-link">Deliverables</a></div>
<div class="item"><a href="collab.html" class="dropdown-link">Collaboration Board</a></div>
<div class="item"><a href="jobs.html" class="dropdown-link">Job Board</a></div>
</div>
<iframe src="https://docs.google.com/document/d/e/2PACX-1vTyuEW-L0_ZGpcoiVQtyCfp7NdRJB99GXkA4pBnRhL2oRLzwRPQ9UxH_mB-Ldha_idn7wBVzEzMcjUC/pub?embedded=true"></iframe>
</div>
</div>
</body>
</html>
<script src="script.js"></script>