forked from akshatggupta/GFG-OpenSource-Site
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (105 loc) · 4.67 KB
/
index.html
File metadata and controls
110 lines (105 loc) · 4.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Open Source World</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<h1>Open Source World</h1>
</div>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="history.html">History</a></li>
<li><a href="benefits.html">Benefits</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="community.html">Community</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-content">
<h1>Welcome to the World of Open Source</h1>
<p>Discover the power of collaborative development and free software</p>
<a href="#about" class="cta-button">Learn More</a>
</div>
</section>
<section id="about" class="about-section">
<h2>What is Open Source?</h2>
<div class="about-content">
<div class="about-text">
<p>Open source software is software with source code that anyone can inspect, modify, and enhance. It's built by communities of developers who believe in the power of collaboration and transparency.</p>
<p>The open source movement has revolutionized the way software is developed, distributed, and maintained. It has given rise to some of the most important technologies we use today.</p>
</div>
<div class="about-image">
<img src="https://github.blog/wp-content/uploads/2023/08/1200x630-Blog-Master.png?fit=1200%2C630" alt="Open Source Development">
</div>
</div>
</section>
<section class="features">
<h2>Key Features of Open Source</h2>
<div class="feature-grid">
<div class="feature-card">
<i class="fas fa-code"></i>
<h3>Transparency</h3>
<p>Source code is available for everyone to see and review</p>
</div>
<div class="feature-card">
<i class="fas fa-users"></i>
<h3>Collaboration</h3>
<p>Global community of developers working together</p>
</div>
<div class="feature-card">
<i class="fas fa-lock-open"></i>
<h3>Freedom</h3>
<p>Freedom to use, modify, and distribute software</p>
</div>
<div class="feature-card">
<i class="fas fa-shield-alt"></i>
<h3>Security</h3>
<p>Community-driven security improvements</p>
</div>
</div>
</section>
<section class="cta-section">
<h2>Ready to Join the Open Source Community?</h2>
<p>Start contributing to open source projects today and be part of something bigger!</p>
<a href="community.html" class="cta-button">Get Started</a>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>About Open Source World</h3>
<p>Your gateway to understanding and participating in the open source movement.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="history.html">History</a></li>
<li><a href="benefits.html">Benefits</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect With Us</h3>
<div class="social-links">
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Open Source World. All rights reserved.</p>
</div>
</footer>
</body>
</html>