-
Notifications
You must be signed in to change notification settings - Fork 2
/
about-the-club.html
86 lines (84 loc) · 3.85 KB
/
about-the-club.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!doctype html>
<html>
<head>
<link rel="shortcut icon" href="resources/t-logo.png">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" href="site.css"/>
<title>About the club</title>
<meta name="description" content="About the club"/>
<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=Montserrat:ital,wght@0,700;0,800;0,900;1,700;1,800;1,900&display=swap" rel="stylesheet">
<script>
function showNavbar() {
var x = document.getElementById("mobile-link-portal");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
</head>
<body>
<div id="banner">
<a href="index.html">
<img id="banner-logo" src="resources/t-logo.png" />
</a>
</div>
<div id="pages-tab">
<a class="page-link" href="what-is-foss.html">What is FOSS?</a>
<a class="page-link curr-page" href="about-the-club.html">About the club</a>
</div>
<div id="mobile-navbar">
<div id="mobile-link-portal">
<div id="mobile-links">
<a href="what-is-foss.html">What is FOSS?</a><br><br>
<a class="curr-page" href="about-the-club.html">About the club</a>
</div>
</div>
<a href="javascript:void(0);" class="icon" onclick="showNavbar()">
<img id="navbar-img" src="https://img.icons8.com/ios-filled/50/000000/menu--v4.png"></img>
</a>
</div>
<div id="content">
<h2 class="top">Who are we?</h2>
<p>
The <b>Free and Open Source Software Club</b> is a student
organization at UW-Madison dedicated to inspiring and supporting
interest in free and open source software and technology. Although
the club is mostly CS focused, it is not required for you to be a
CS/ECE major to join, or for you to have any previous experience
with free and open source software. All you need is an interest in
learning more!
<br>
<br>
In creating this club, we hope to develop a network of UW-Madison
students who are passionate about both developing and using free
and open source software. Encouraging the use of free and open source
software is just as important as developing it. Taking the plunge
and using software that you're not already familiar with can be difficult
when you're making the switch alone. At the Free and Open Source Software
Club, we hope to provide a support network in order to make that
transition an easier process.
</p>
<h2>Meetings</h2>
<p>
The Free and Open Source Software Club will meet at least four
times a month. Three of these will be <b>general club meetings</b>,
where members are encouraged to come and socialize, talk about FOSS,
and any projects they may be working on. Once a month, we will host
a <b>workshop</b> where a speaker will present a technology or topic
relevant to FOSS.
<br>
<br>
Our first club meeting for the Fall 2021 semester is still upcoming.
Be sure to join our newsletter or look out for announcements on our
website or discord!
</p>
</div>
<div id="footer">Footer</div>
</body>
</html>