-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
329 lines (286 loc) · 11 KB
/
index.html
File metadata and controls
329 lines (286 loc) · 11 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grants for SequenceLab</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #ffffff;
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
header {
text-align: center;
color: #2d3748;
margin-bottom: 40px;
padding: 20px;
background: #f7fafc;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
color: #2d3748;
}
header p {
font-size: 1.2em;
color: #4a5568;
}
.source-section {
margin-bottom: 50px;
}
.source-header {
background: rgba(255, 255, 255, 0.95);
padding: 20px 30px;
border-radius: 12px;
margin-bottom: 30px;
box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.source-header h2 {
color: #2d3748;
font-size: 1.8em;
margin-bottom: 5px;
}
.source-header p {
color: #4a5568;
font-size: 1em;
}
.grants-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.grant-card {
background: white;
border-radius: 15px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grant-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.grant-header {
margin-bottom: 25px;
}
.grant-number {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.9em;
font-weight: bold;
margin-bottom: 15px;
}
.grant-title {
font-size: 1.5em;
color: #2d3748;
margin-bottom: 10px;
line-height: 1.4;
}
.deadline {
background: #fed7d7;
color: #c53030;
padding: 10px 15px;
border-radius: 8px;
font-weight: bold;
display: inline-block;
margin-top: 10px;
}
.deadline-icon {
margin-right: 5px;
}
.grant-details {
margin-top: 20px;
}
.detail-section {
margin-bottom: 20px;
}
.detail-section h3 {
color: #4a5568;
font-size: 1.1em;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.detail-section h3::before {
content: "▶";
margin-right: 8px;
color: #667eea;
}
.budget-info, .duration-info {
background: #f7fafc;
padding: 15px;
border-radius: 8px;
border-left: 4px solid #667eea;
margin-bottom: 15px;
}
.budget-info strong, .duration-info strong {
color: #2d3748;
}
.research-types {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.research-tag {
background: #e6fffa;
color: #234e52;
padding: 8px 15px;
border-radius: 20px;
font-size: 0.9em;
border: 1px solid #81e6d9;
}
.apply-button {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 12px 25px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: transform 0.2s ease, box-shadow 0.2s ease;
margin-top: 10px;
}
.apply-button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
footer {
text-align: center;
color: #4a5568;
padding: 20px;
margin-top: 40px;
background: #f7fafc;
border-radius: 12px;
}
@media (max-width: 768px) {
.grants-container {
grid-template-columns: 1fr;
}
header h1 {
font-size: 1.8em;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>🔬 Grants for SequenceLab</h1>
<p>Current Research Funding Opportunities</p>
</header>
<!-- ==================== ICMR GRANTS SECTION - START ==================== -->
<div class="source-section">
<div class="source-header">
<h2>🏛️ ICMR (Indian Council of Medical Research)</h2>
<p>Extramural Research Grants - 2026</p>
</div>
<div class="grants-container">
<!-- ==================== GRANT 1 - START ==================== -->
<div class="grant-card">
<div class="grant-header">
<span class="grant-number">Grant Call #1</span>
<h2 class="grant-title">ICMR SMALL Extramural Grants<br>("ICMR ANVESHAN Extramural Grants")</h2>
<div class="deadline">
<span class="deadline-icon">⏰</span>
Deadline: March 16, 2026 at 5:00 PM IST
</div>
</div>
<div class="grant-details">
<div class="detail-section">
<h3>Duration & Funding</h3>
<div class="budget-info">
<strong>Budget Range:</strong> ₹10 Lakhs to less than ₹2 Crores
</div>
<div class="duration-info">
<strong>Project Duration:</strong> Maximum 3 years
</div>
</div>
<div class="detail-section">
<h3>Supported Research Types</h3>
<div class="research-types">
<span class="research-tag">Discovery Research</span>
<span class="research-tag">Development Research</span>
<span class="research-tag">Delivery Research</span>
<span class="research-tag">Descriptive Research</span>
</div>
</div>
<div class="detail-section">
<a href="https://www.icmr.gov.in/icmrobject/uploads/Call/1767267794_calladvtsmallanveshangrants202601jan20256.pdf" target="_blank" class="apply-button">
📄 View Full Announcement
</a>
</div>
</div>
</div>
<!-- ==================== GRANT 1 - END ==================== -->
<!-- ==================== GRANT 2 - START ==================== -->
<div class="grant-card">
<div class="grant-header">
<span class="grant-number">Grant Call #2</span>
<h2 class="grant-title">ICMR Intermediate Extramural Grants<br>("ICMR NISCHAYAK ANVESHAN Extramural Grants")</h2>
<div class="deadline">
<span class="deadline-icon">⏰</span>
Deadline: March 20, 2026 at 5:00 PM IST
</div>
</div>
<div class="grant-details">
<div class="detail-section">
<h3>Duration & Funding</h3>
<div class="budget-info">
<strong>Budget Range:</strong> ₹2 Crores to less than ₹8 Crores
</div>
<div class="duration-info">
<strong>Project Duration:</strong> Maximum 4 years
</div>
</div>
<div class="detail-section">
<h3>Supported Research Types</h3>
<div class="research-types">
<span class="research-tag">Discovery Research</span>
<span class="research-tag">Development Research</span>
<span class="research-tag">Delivery Research</span>
<span class="research-tag">Descriptive Research</span>
</div>
</div>
<div class="detail-section">
<a href="https://www.icmr.gov.in/icmrobject/uploads/Call/1767267845_calladvtintermediatenischayakanveshangrants202601jan2026.pdf" target="_blank" class="apply-button">
📄 View Full Announcement
</a>
</div>
</div>
</div>
<!-- ==================== GRANT 2 - END ==================== -->
</div>
</div>
<!-- ==================== ICMR GRANTS SECTION - END ==================== -->
<!-- ==================== ADD MORE SOURCE SECTIONS BELOW ==================== -->
<!--
To add grants from a new source (e.g., DBT, DST, etc.):
1. Copy the entire "source-section" div above
2. Paste it here
3. Update the source-header with new organization name
4. Add grant cards inside the grants-container
-->
<footer>
<p>For more information, visit the respective funding organization's website</p>
<p style="margin-top: 10px; font-size: 0.9em;">Last Updated: January 2026</p>
</footer>
</div>
</body>
</html>