forked from iriteshmishra/Open-Source-Organization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (75 loc) · 4.19 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
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="https://i.postimg.cc/QCy4mSnv/pic.jpg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/jquery.js"></script>
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/web3.min.js"></script>
<title>Open Source Organizations</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/smooth-scroll/16.1.3/smooth-scroll.min.js"
integrity="sha512-HYG9E+RmbXS7oy529Nk8byKFw5jqM3R1zzvoV2JnltsIGkK/AhZSzciYCNxDMOXEbYO9w6MJ6SpuYgm5PJPpeQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<div class="profileimagecontainer">
<img src="https://i.postimg.cc/tTymWTbj/888918.png" height="150px" width="150px" alt="Ritesh Mishra"
class="profileimage" />
</div>
<div>
<p style="color: white;">
<strong>OPEN SOURCE</strong> refers to software and projects that are made available to the public with
their source code freely accessible. <br>
This means that anyone can view, use, modify and distribute the software. <br>
Open Source software is often developed collaboratively by a community of volunteers or organizations.
</p>
<!-- ⬇️ This section is modified by enan -->
<div style="color: lightgreen;">
<p style="color: lightgreen; font-size: x-large;text-align: center;">
WHY CONTRIBUTE TO OPEN SOURCE?
</p>
<div style="font-size: 100%;width: fit-content;margin: auto;">
<p style="color: white;text-align: left; margin:2px 20px;">
<span>
💚 <u style="color: lightgreen;">TRANSPARENCY:</u> Open Source code is open for anyone to inspect, which
enhances transparency and trust.
</span>
</p>
<p style="color: white;text-align: left; margin:2px 20px;">
🤍 <u style="color: lightgreen;">INNOVATION:</u> A global community of developers can contribute to and
improve Open Source projects, driving innovation.
</p>
<p style="color: white;text-align: left; margin:2px 20px;">
💚 <u style="color: lightgreen;">COST-EFFICIENCY:</u> Open Source software is often free to use, reducing
costs for individuals and organizations.
</p>
<p style="color: white;text-align: left; margin:2px 20px;">
🤍 <u style="color: lightgreen;">FLEXIBILITY:</u> Users can modify open source software to suit their
specific needs.
</p>
<p style="color: white;text-align: left; margin:2px 20px;">
💚 <u style="color: lightgreen;">SECURITY:</u> With many eyes on the code, security vulnerabilities can be
identified and fixed more quickly.
</p>
</div>
</div>
</div>
<div class="name">
<h3>List of All Open Source Organizations <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="45"
height="45">
<path
d="M12 2C17.52 2 22 6.48 22 12C22 17.52 17.52 22 12 22C6.48 22 2 17.52 2 12C2 6.48 6.48 2 12 2ZM12 20C16.42 20 20 16.42 20 12C20 7.58 16.42 4 12 4C7.58 4 4 7.58 4 12C4 16.42 7.58 20 12 20ZM13 12H16L12 16L8 12H11V8H13V12Z"
fill="lightgreen"></path>
</svg></h3>
</div>
<div class="container">
<input type="text" id="searchInput" placeholder="Search organizations">
<div id="divorganization">
</div>
</div>
<script src="search.js"></script>
<script src="./script.js"></script>
</body>
</html>