-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopensource.html
More file actions
227 lines (194 loc) · 4.66 KB
/
Copy pathopensource.html
File metadata and controls
227 lines (194 loc) · 4.66 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Open Source Internship</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap" rel="stylesheet">
<style>
body{
margin:0;
font-family:'Poppins',sans-serif;
background:linear-gradient(120deg,#f3f0d8,#fdf6bc,#f9eabb);
color:#111;
}
nav{
position:sticky;
top:0;
background:rgba(255,255,255,0.4);
backdrop-filter:blur(12px);
padding:15px;
z-index:1000;
}
nav ul{
display:flex;
justify-content:center;
gap:20px;
list-style:none;
margin:0;
padding:0;
flex-wrap:wrap;
}
nav a{
text-decoration:none;
color:#111;
font-weight:500;
transition:0.3s;
padding:5px 10px;
border-radius:10px;
}
nav a:hover{
background:rgba(0,0,0,0.1);
}
/* HERO */
.hero{
text-align:center;
padding:60px 20px;
}
.hero h1{
font-size:42px;
}
/* LIST SECTION */
.section{
max-width:900px;
margin:auto;
padding:20px;
}
/* ITEM BOX (NOT CARD) */
.item{
background:rgba(255,255,255,0.4);
margin:15px 0;
padding:20px;
border-left:6px solid #4facfe;
border-radius:10px;
transition:0.3s;
}
.item:hover{
transform:translateX(10px);
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}
/* BADGE */
.badge{
display:inline-block;
padding:3px 10px;
font-size:12px;
background:#00f2fe;
border-radius:20px;
color:white;
margin-bottom:5px;
}
/* BUTTON */
button{
margin-top:10px;
padding:8px 15px;
border:none;
border-radius:20px;
background:linear-gradient(45deg,#00f2fe,#4facfe);
color:white;
cursor:pointer;
}
nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 30px;
}
/* UL ko horizontal banana */
.nav-links{
display:flex;
list-style:none;
gap:15px;
}
.nav-links a{
text-decoration:none;
color:#333;
}
/* profile section */
#userSection{
display:flex;
align-items:center;
gap:15px;
}
#profileLetter{
width:35px;
height:35px;
border-radius:50%;
background:#2196f3;
color:white;
display:flex;
justify-content:center;
align-items:center;
font-weight:bold;
cursor:pointer;
text-transform:uppercase;
}
/* FOOTER */
footer{
text-align:center;
padding:20px;
margin-top:20px;
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<ul class="nav-links">
<li><a href="home.html">Home</a></li>
<li><a href="iit.html">IIT</a></li>
<li><a href="nit.html">NIT</a></li>
<li><a href="startup.html">Startup</a></li>
<li><a href="private.html">Private</a></li>
<li><a href="international.html">International</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="freelance.html">Freelancing</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="hackathon.html">Hackathon</a></li>
<li><a href="scholarship.html">Scholarship</a></li>
</ul>
<div id="userSection">
<a href="login.html" id="loginBtn">Login</a>
<div id="profile" style="display:none;">
<div id="profileLetter"></div>
</div>
</div>
</nav>
<!-- HERO -->
<div class="hero">
<h1>Open Source Internships</h1>
<p>Explore and contribute to real-world projects</p>
</div>
<!-- LIST -->
<div class="section">
<div class="item">
<span class="badge">🔥 Trending</span>
<h2>Google Summer of Code (GSoC)</h2>
<p>Work with global open source organizations and gain real experience.</p>
<button onclick="window.open('https://summerofcode.withgoogle.com')">Apply Now</button>
</div>
<div class="item">
<span class="badge">⭐ Popular</span>
<h2>GitHub Open Source Programs</h2>
<p>Contribute to real repositories and collaborate with developers worldwide.</p>
<button onclick="window.open('https://github.com')">Apply Now</button>
</div>
<div class="item">
<span class="badge">🚀 Remote</span>
<h2>MLH Fellowship</h2>
<p>Remote fellowship to build real-world projects and improve skills.</p>
<button onclick="window.open('https://fellowship.mlh.io')">Apply Now</button>
</div>
<div class="item">
<span class="badge">💡 Learning</span>
<h2>Linux Foundation Internship</h2>
<p>Work on open source technologies used in real industry systems.</p>
<button onclick="window.open('https://www.linuxfoundation.org')">Apply Now</button>
</div>
</div>
<!-- FOOTER -->
<footer>
<p>© 2026 Open Source Internship Portal</p>
</footer>
<script src="script.js"></script>
</body>
</html>