-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn.html
More file actions
126 lines (119 loc) · 5.25 KB
/
learn.html
File metadata and controls
126 lines (119 loc) · 5.25 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn More - GLUG SJGI</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="nav-content">
<div class="logo">GLUG SJGI</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
<a href="features.html">Features</a>
<a href="about.html">About</a>
<a href="faq.html">FAQ</a>
</div>
<button class="menu-toggle" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
<main class="learn-page">
<section class="learn-hero">
<h1>Discover GLUG SJGI</h1>
<p>Your gateway to the world of Free and Open Source Software</p>
</section>
<section class="learn-content">
<div class="learn-section">
<h2>What is GLUG?</h2>
<p>GLUG (GNU/Linux Users Group) is a community-driven organization dedicated to promoting and supporting the use of GNU/Linux and Free/Open Source Software (FOSS). We believe in the power of collaborative learning and the freedom to use, study, modify, and share software.</p>
</div>
<div class="learn-section">
<h2>Our Mission</h2>
<p>Our mission is to create an inclusive environment where individuals can learn about GNU/Linux, collaborate on open-source projects, and advocate for software freedom. We aim to:</p>
<ul class="learn-list">
<li>Promote the use of Free and Open Source Software</li>
<li>Provide learning resources and support for GNU/Linux users</li>
<li>Foster collaboration and knowledge sharing</li>
<li>Organize workshops, seminars, and hands-on sessions</li>
<li>Build a strong community of FOSS enthusiasts</li>
</ul>
</div>
<div class="learn-section">
<h2>Get Involved</h2>
<div class="involvement-grid">
<div class="involvement-card">
<h3>Join Events</h3>
<p>Participate in our regular meetups, workshops, and installation festivals.</p>
</div>
<div class="involvement-card">
<h3>Contribute</h3>
<p>Share your knowledge, help others, and contribute to open-source projects.</p>
</div>
<div class="involvement-card">
<h3>Learn</h3>
<p>Access our resources, tutorials, and documentation to enhance your skills.</p>
</div>
</div>
</div>
<div class="learn-section">
<h2>Why Choose GLUG?</h2>
<div class="benefits-grid">
<div class="benefit-card">
<div class="benefit-icon">🤝</div>
<h3>Community Support</h3>
<p>Get help from experienced members and make lasting connections.</p>
</div>
<div class="benefit-card">
<div class="benefit-icon">📚</div>
<h3>Learning Resources</h3>
<p>Access curated materials and structured learning paths.</p>
</div>
<div class="benefit-card">
<div class="benefit-icon">🌟</div>
<h3>Hands-on Experience</h3>
<p>Practice with real-world projects and gain practical skills.</p>
</div>
<div class="benefit-card">
<div class="benefit-icon">🚀</div>
<h3>Career Growth</h3>
<p>Build your portfolio and enhance your professional network.</p>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>GLUG SJGI</h3>
<p>Promoting freedom through free software</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
<a href="features.html">Features</a>
<a href="about.html">About</a>
</div>
<div class="footer-section">
<h3>Connect</h3>
<a href="https://github.com/admin-sauce">GitHub</a>
<a href="#">Twitter</a>
<a href="#">Discord</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 GLUG SJGI. All rights reserved.</p>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>
<link rel="icon" type="image/x-icon" href="favicon.ico">