-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (77 loc) · 2.44 KB
/
index.html
File metadata and controls
77 lines (77 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CBIT OSC Resources</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
margin: 2em auto;
max-width: 800px;
padding: 0 1em;
}
header, main {
margin-bottom: 2em;
}
h1, h2 {
color: #333;
}
ul {
list-style: none;
padding: 0;
}
li {
background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 5px;
margin-bottom: 1em;
padding: 1em;
}
a {
text-decoration: none;
color: #007bff;
font-weight: bold;
font-size: 1.1em;
}
a:hover {
text-decoration: underline;
}
p {
color: #555;
}
</style>
</head>
<body>
<header>
<h1>CBIT Open Source Community Resources</h1>
<p>A centralized collection of all sessions, workshops, and resource material conducted by the CBIT Open Source Community. Includes slides, code samples, notes, and related content for student and contributor reference.</p>
</header>
<main>
<h2>Downloadable Resources</h2>
<ul>
<li>
<a href="./GSoC Awareness Session">GSoC Awareness Session</a>
<p>Slides and resources for a Google Summer of Code (GSoC) awareness session.</p>
</li>
<li>
<a href="./Git & GitHub">Git & GitHub Workshop</a>
<p>Reference materials for Git & GitHub workshops.</p>
</li>
<li>
<a href="./Hacktoberfest">Hacktoberfest Resources</a>
<p>Valuable resources for Hacktoberfest participants and contributors.</p>
</li>
<li>
<a href="./ReactJS & FastAPI Bootcamp">ReactJS & FastAPI Bootcamp</a>
<p>All the learning materials for the ReactJS & FastAPI Bootcamp.</p>
</li>
<li>
<a href=""./ML & Flask Bootcamp">ML & Flask Bootcamp</a>
<p>Reference material for the ML & Flask Bootcamp.</p>
</li>
</ul>
</main>
</body>
</html>