Spaces:
Running
Running
File size: 4,284 Bytes
e26e56d |
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 |
<!-- Fellowships & Scholarships Page -->
<div class="min-h-screen flex flex-col bg-white">
<!-- Header -->
<header class="bg-primary text-white">
<div class="max-w-7xl mx-auto px-4 py-3 flex items-center justify-between">
<h1 class="text-2xl font-bold">TN Medical Connect</h1>
<nav class="space-x-4 text-sm">
<a href="#" class="hover:underline">Home</a>
<a href="#" class="hover:underline font-semibold">Fellowships</a>
<a href="#" class="hover:underline">Careers</a>
<!-- ...other nav links -->
</nav>
</div>
</header>
<!-- Main Content -->
<main class="flex-1 max-w-7xl mx-auto px-4 py-6">
<h2 class="text-3xl font-bold text-gray-800 mb-4">🎓 Fellowships & Scholarships</h2>
<p class="text-gray-600 mb-8">Explore advanced training opportunities and scholarships for medical professionals in Tamil Nadu, India, and across Asia.</p>
<!-- Tamil Nadu Opportunities -->
<section class="mb-8">
<h3 class="text-2xl font-semibold text-gray-800 mb-3">Within Tamil Nadu</h3>
<div class="space-y-4 text-sm">
<div class="p-4 bg-gray-50 border border-gray-200 rounded">
<p class="font-medium">Madras Medical College Research Fellowship</p>
<p class="text-gray-600">A one-year clinical research fellowship at MMC for postgraduates. <span class="text-gray-800">Deadline: May 1, 2025.</span></p>
</div>
<div class="p-4 bg-gray-50 border border-gray-200 rounded">
<p class="font-medium">Tamil Nadu Health University Merit Scholarship</p>
<p class="text-gray-600">Scholarship for MD/MS students in Tamil Nadu with outstanding academic records. <span class="text-gray-800">Deadline: Jun 15, 2025.</span></p>
</div>
</div>
</section>
<!-- India Opportunities -->
<section class="mb-8">
<h3 class="text-2xl font-semibold text-gray-800 mb-3">Across India</h3>
<div class="space-y-4 text-sm">
<div class="p-4 bg-gray-50 border border-gray-200 rounded">
<p class="font-medium">AIIMS Delhi Clinical Fellowship Program</p>
<p class="text-gray-600">Fellowship in Cardiology at AIIMS for practicing physicians across India. <span class="text-gray-800">Deadline: Jul 30, 2025.</span></p>
</div>
<div class="p-4 bg-gray-50 border border-gray-200 rounded">
<p class="font-medium">ICMR Junior Research Scholarship</p>
<p class="text-gray-600">Indian Council of Medical Research offers scholarships for young researchers (nation-wide). <span class="text-gray-800">Deadline: Apr 2025.</span></p>
</div>
</div>
</section>
<!-- Asia Opportunities -->
<section class="mb-8">
<h3 class="text-2xl font-semibold text-gray-800 mb-3">Asia & International</h3>
<div class="space-y-4 text-sm">
<div class="p-4 bg-gray-50 border border-gray-200 rounded">
<p class="font-medium">WHO Southeast Asia Young Physician Fellowship</p>
<p class="text-gray-600">World Health Organization fellowship for physicians in Southeast Asia focusing on public health. <span class="text-gray-800">Deadline: Aug 2025.</span></p>
</div>
<div class="p-4 bg-gray-50 border border-gray-200 rounded">
<p class="font-medium">Japan JICA Medical Scholarship</p>
<p class="text-gray-600">Japan International Cooperation Agency scholarship for medical specialists from Asian countries to train in Japan. <span class="text-gray-800">Deadline: Dec 2025.</span></p>
</div>
</div>
</section>
<!-- Note or call-to-action -->
<div class="bg-primary text-white p-4 rounded">
<p class="text-sm">For more opportunities abroad, see our <a href="#" class="underline font-medium text-white">Global Grants</a> and <a href="#" class="underline font-medium text-white">How to Go Abroad</a> pages.</p>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-100">
<div class="max-w-7xl mx-auto px-4 py-5 text-sm text-gray-600">
© 2025 TN Medical Connect · <a href="#" class="text-primary hover:underline">Submit an Opportunity</a>
</div>
</footer>
</div>
|