-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
63 lines (63 loc) · 3.07 KB
/
Copy pathresources.html
File metadata and controls
63 lines (63 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Engineering Club - About Us</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 rel="icon" href="Images/logo.png">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<nav class="container">
<div class="nav-content">
<div class="logo">The Boring Club at UW</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="resources.html" class="active">Resources</a>
<a href="projects.html">Projects</a>
<a href="about.html">About Us</a>
<a href="started.html">Get Started</a>
</div>
</div>
</nav>
</header>
<main class="container">
<h1>Resources</h1>
<div class="card full-width">
<h2>GitHub</h2>
<p>
This GitHub organization is where we host all of our ongoing projects, resources, and documentation. Below you'll find:
</p>
<ul>
<li>Projects related to embedded systems, aerospace, and more.</li>
<li>Meeting materials and resources.</li>
<li>Templates and contribution guidelines.</li>
</ul>
<p>
Git and plaintext formats like Markdown and Mermaid are industry-standard tools for engineering companies. If you need help getting started, take a look at the Training Modules repository.
</p>
<a href="https://github.com/TBC-Projects" target="_blank" class="button">Open GitHub</a>
</div>
<div class="card full-width">
<h2>Google Drive</h2>
<p>
This Google Drive is where we store all of our presentations and legacy materials. If you need to request access, do so via your UW email. </p>
<a href="https://drive.google.com/drive/folders/1DC3H9ugFBJYrWd3H7M0uv1c1o6XfAikJ?usp=sharing" target="_blank" class="button">Open Google Drive</a>
</div>
<h1>Request Access</h1>
<div class="card full-width">
<h2>The Boring Club Access Request Form</h2>
<p>
Need to request access to one of our platforms? Fill out the Boring Club Access Request Form.
</p>
<a href="https://forms.gle/jfRtpWVCPPf1A2vN7" target="_blank" class="button">Request Access</a>
</div>
</main>
</body>
</html>