-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.html
79 lines (68 loc) · 3.89 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Open Source Club - Git Workshop</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header style="text-align: right; color: red;">
<h1 style="font-size: 2em;">Git Workshop</h1>
<h2 style="font-size: 1.5em;">Open Source Club</h2>
</header>
<section id="feedback" style="background-color: rgb(94, 223, 255); font-size: 0.9em; text-align: center;">
<h3 style="font-size: 1.2em;">Feedback</h3>
<p style="color: white;">We'd love to hear your thoughts on the workshop! Please provide your feedback:</p>
<a href="https://example.com/feedback-form" target="_blank">Open Source Workshop Feedback Form</a>
</section>
<section id="oss-benefits" style="font-size: 1.3em;">
<h3 style="color: blue;">Benefits of Being Part of OSS</h3>
<ul>
<li>Learn by contributing to real-world projects.</li>
<li>Collaborate with developers from around the world.</li>
<li>Gain practical experience in software development.</li>
<li style="font-size: 20px;">Improve your coding and problem-solving skills.</li>
</ul>
</section>
<section id="oss-team" style="text-align: left;">
<h3>About the OSS Team</h3>
<p style="font-size: 1.4em;">Our Open Source Club is dedicated to bringing together students who love coding and contributing to open source projects.</p>
<p style="font-size: 0.8em; color: brown;">We organize workshops, hackathons, and contribution events to encourage collaboration in the open-source community.</p>
</section>
<section id="what-is-oss" style="font-size: 2em; text-align: centre;">
<h3>What is Open Source?</h3>
<p style="font-size: 1.2em;">Open source software is software with source code that anyone can inspect, modify, and enhance.</p>
</section>
<section id="event-description" style="margin-left: 50px;">
<h3 style="font-size: 1.5em;">Event Description</h3>
<p style="font-size: 0.9em; color: orange;">Learn the basics of Git, how to use version control, and start contributing to Open Source projects.</p>
</section>
<section id="first-contributions" style="font-size: 0.7em;">
<h3>Make Your First Contribution</h3>
<p style="font-size: 1.5em; color: red;">New to open source? Start by making your first contribution here:</p>
<a href="https://github.com/firstcontributions/first-contributions" target="_blank">First Contributions</a>
</section>
<section id="oss-projects" style="font-size: 1.2em;">
<h3 style="text-align: center; font-size: 2em; color: pink;">Example Open Source Projects</h3>
<ul style="font-size: 0.9em; text-align: left;">
<li>Linux Kernel</li>
<li>Mozilla Firefox</li>
<li>Apache HTTP Server</li>
<li style="font-size: 2em;">GIMP (GNU Image Manipulation Program)</li>
<li>TensorFlow</li>
</ul>
</section>
<section id="get-started" style="background-color: #f0f0f0; margin-top: 40px;">
<h3 style="font-size: 1.5em;">Get Started with Open Source</h3>
<p style="color: blue;">If you're ready to dive into open source, check out this curated list of events:</p>
<a href="https://github.com/anubhavpulkit/Open-Source-Events" target="_blank" style="font-size: 1.2em; color: purple;">Open Source Events</a>
</section>
<section id="team-images" style="text-align: left;">
<h3 style="color: red; text-align: center;">Meet the Team</h3>
<img src="team1.jpg" alt="Team Member 1" style="width: 300px;">
<img src="team2.jpg" alt="Team Member 2" style="height: 300px;">
<img src="team3.jpg" alt="Team Member 3" style="width: 200px; height: 50px;">
</section>
</body>
</html>