Spaces:
Running
Running
File size: 5,488 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
<!-- PhD & Master's 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">PhD & Masterโs</a>
<a href="#" class="hover:underline">How to Go Abroad</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">๐ PhD & Masterโs Opportunities</h2>
<p class="text-gray-600 mb-6">Pursue advanced medical education at top global universities. Discover highly ranked programs and what it takes to get admitted.</p>
<!-- Top Universities Highlights -->
<section class="mb-8">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Top Universities for Medicine</h3>
<div class="grid gap-4 sm:grid-cols-2 lg:grid-cols-3">
<div class="p-4 bg-gray-50 border border-gray-200 rounded text-center">
<h4 class="text-lg font-semibold text-gray-800">Harvard University</h4>
<p class="text-sm text-gray-600">USA โ Ranked #1 globally in Medicine​:contentReference[oaicite:6]{index=6}</p>
<a href="#" class="text-primary text-sm hover:underline">View Programs »</a>
</div>
<div class="p-4 bg-gray-50 border border-gray-200 rounded text-center">
<h4 class="text-lg font-semibold text-gray-800">University of Oxford</h4>
<p class="text-sm text-gray-600">UK โ Ranked #2 globally in Medicine​:contentReference[oaicite:7]{index=7}</p>
<a href="#" class="text-primary text-sm hover:underline">View Programs »</a>
</div>
<div class="p-4 bg-gray-50 border border-gray-200 rounded text-center">
<h4 class="text-lg font-semibold text-gray-800">Stanford University</h4>
<p class="text-sm text-gray-600">USA โ Ranked #3 globally in Medicine</p>
<a href="#" class="text-primary text-sm hover:underline">View Programs »</a>
</div>
<!-- Additional top universities (Cambridge, Johns Hopkins, etc.) could be listed similarly -->
</div>
</section>
<!-- Application Guidance -->
<section class="mb-8">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Application Tips & Resources</h3>
<div class="md:flex md:space-x-6 text-sm">
<div class="md:flex-1 mb-4 md:mb-0">
<h4 class="text-xl font-semibold text-gray-800">Preparing for Application</h4>
<ul class="list-disc list-inside text-gray-700 mt-2 space-y-1">
<li>Standardized Tests: Check if GRE/GMAT is required for the program. Take IELTS/TOEFL for English proficiency if needed.</li>
<li>Build CV/Resume: Highlight research, publications, and clinical experience.</li>
<li>Letters of Recommendation: Secure strong references from mentors or professors.</li>
<li>Personal Statement: Draft a compelling narrative of your goals and motivations.</li>
</ul>
</div>
<div class="md:flex-1">
<h4 class="text-xl font-semibold text-gray-800">Resources</h4>
<p class="mt-2 text-gray-700">Use global rankings and databases to find programs:</p>
<ul class="list-none mt-1 space-y-1">
<li>๐ <a href="https://www.topuniversities.com" class="text-primary hover:underline">QS World University Rankings</a></li>
<li>๐ <a href="https://www.timeshighereducation.com" class="text-primary hover:underline">THE World University Rankings</a></li>
<li>๐ <a href="https://scholarships.com" class="text-primary hover:underline">Scholarship Search Portals</a></li>
<li>๐ <a href="#" class="text-primary hover:underline">Guide: Writing a Statement of Purpose</a></li>
</ul>
</div>
</div>
</section>
<!-- Notable Programs or Scholarships (if any) -->
<section class="mb-8">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Notable Programs & Scholarships</h3>
<div class="space-y-3 text-sm">
<div class="p-4 bg-gray-50 border border-gray-200 rounded">
<p class="font-medium">Rhodes Scholarship โ University of Oxford</p>
<p class="text-gray-600">Fully-funded scholarship for postgraduate study at Oxford, open to select countries. <a href="#" class="text-primary hover:underline">Learn more »</a></p>
</div>
<div class="p-4 bg-gray-50 border border-gray-200 rounded">
<p class="font-medium">Fulbright Program โ Global</p>
<p class="text-gray-600">Exchange scholarships for study/research in the USA for international students. <a href="#" class="text-primary hover:underline">Learn more »</a></p>
</div>
</div>
</section>
</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">Student Experiences</a>
</div>
</footer>
</div>
|