-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
75 lines (58 loc) · 2.53 KB
/
about.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
<!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-content w3-padding-top-24">
<div class="w3-container">
<h2>About</h2>
<p class="w3-left-align">University of Minnesota Kernel Object is on a mission to educate students about
kernel-based software
development and provide opportunities for hands-on experience with low-level computing architecture. We also
foster a community for students and organizations interested in kernel development, promoting collaboration and
knowledge-sharing in this exciting field.</p>
<!-- paragraph was generated by chat gpt. NEED to change -->
<p>Our <a target="_blank" href="/docs/">documentation</a> and all other group related resource can be found
online.
</div>
<div class="w3-container">
<h2>Membership</h2>
<p>what membership grants you</p>
<p class="w3-left-align">Attending two of our events gets you a membership to the group. Check out our
<strong><a
href="https://calendar.google.com/calendar/embed?src=c_bc1d2c03ba03c00c216e420aa6c239ddd969d47902d52f8f303417b9f609d50b%40group.calendar.google.com&ctz=America%2FChicago"
target="_blank">events calendar</a></strong> for more!.
</p>
</div>
<div class="w3-container">
<h3>Get involved</h3>
<p>
<span><strong>Join our discord: <a href="https://discord.gg/zVpRKUJ2gh" target="_blank">HERE!</a></strong></span> to connect with other members.
<span><strong>Join our Mailing List: <a href="https://forms.gle/MxEv7JJsvmXuSUvt6"
target="_blank">HERE</a></strong></span>
</p> to get biweekly updates.
</div>
</div>
<hr>
<footer class="w3-container ">
<div class="w3-container w3-center">
<h5>Footer</h5>
<p>Footer information goes here</p>
</div>
</footer>
</body>
</html>