-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenSource.html
More file actions
61 lines (55 loc) · 2.47 KB
/
openSource.html
File metadata and controls
61 lines (55 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Info on Open Source</title>
</head>
<body>
<header class="d-flex justify-content-center align-items-center flex-column text-center">
<a href="./index.html">
<img src="./assets/images/logo.png" class="logo img-fluid" alt="Open Source Info logo" />
</a>
</header>
<main class="container text-center my-4">
<section class="about border rounded p-4 shadow-sm mb-4">
<h2 class="fw-bold mb-3">What Are Open Source Projects?</h2>
<p class="mb-0">
Projects that <strong>you</strong> can contribute to! The code is publicly accessible and can be read,
modified, or enhanced. Open source projects are built by communities — not just one author. Check out the
helpful resources below to get started.
</p>
</section>
<section class="d-flex justify-content-center flex-wrap gap-4">
<div class="card info-card" style="width: 18rem;">
<a href="https://opensource.guide/" target="_blank" rel="noopener noreferrer">
<img class="card-img-top" src="./assets/images/guides_img.png" alt="Open Source Guides" />
</a>
<div class="card-body">
<p class="card-text">
Helpful guides covering how to contribute, the legal side of open source, and finding users for your project.
</p>
</div>
</div>
<div class="card info-card" style="width: 18rem;">
<a href="https://github.com/firstcontributions/first-contributions" target="_blank" rel="noopener noreferrer">
<img class="card-img-top" src="./assets/images/first_cont_img.png" alt="First Contributions Guide" />
</a>
<div class="card-body">
<p class="card-text">
A GitHub repository that helps beginners make their very first contribution to open source.
</p>
</div>
</div>
</section>
</main>
<footer class="text-center py-3">
<small class="text-muted">© 2025 First Issue Finder</small>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="./assets/js/index.js"></script>
</body>
</html>