Spaces:
Running
Running
<!-- How to Go Abroad 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">How to Go Abroad</a> | |
<a href="#" class="hover:underline">Global Grants</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">π How to Go Abroad</h2> | |
<p class="text-gray-600 mb-8">Guidance on the exams and requirements for working or studying as a medical professional in different countries.</p> | |
<div class="grid gap-6 md:grid-cols-2"> | |
<!-- UKMLA Card --> | |
<div class="p-5 border border-gray-200 rounded-lg shadow-sm"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-1">UKMLA (UK Medical Licensing Assessment)</h3> | |
<p class="text-sm text-gray-700 mb-2">The UKMLA is the licensing exam for practicing in the UK, replacing the PLAB from 2024​:contentReference[oaicite:3]{index=3}. It consists of an Applied Knowledge Test (AKT) and a Clinical Skills Assessment (CSA).</p> | |
<ul class="list-disc list-inside text-sm text-gray-600 mb-1"> | |
<li>Ensure you meet the English language requirements (IELTS/OET).</li> | |
<li>Register with the GMC (General Medical Council) for the exam.</li> | |
<li>Prepare using the MLA content map and practice questions.</li> | |
</ul> | |
<a href="https://www.gmc-uk.org/mla" class="text-primary text-sm hover:underline">Official UKMLA Info »</a> | |
</div> | |
<!-- USMLE Card --> | |
<div class="p-5 border border-gray-200 rounded-lg shadow-sm"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-1">USMLE (United States Medical Licensing Examination)</h3> | |
<p class="text-sm text-gray-700 mb-2">A three-step exam required for medical licensure in the USA. Steps 1 and 2 (CK) are typically done before residency; Step 3 is completed during residency.</p> | |
<ul class="list-disc list-inside text-sm text-gray-600 mb-1"> | |
<li>Step 1: Basic science knowledge (now Pass/Fail).</li> | |
<li>Step 2 CK: Clinical knowledge (core clinical subjects).</li> | |
<li>Step 3: Advanced clinical examination (after medical school).</li> | |
</ul> | |
<a href="https://www.usmle.org" class="text-primary text-sm hover:underline">Official USMLE Info »</a> | |
</div> | |
<!-- AMC Card --> | |
<div class="p-5 border border-gray-200 rounded-lg shadow-sm"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-1">AMC Exam (Australian Medical Council)</h3> | |
<p class="text-sm text-gray-700 mb-2">The AMC exam is for doctors seeking registration in Australia. It includes a multiple-choice exam and a clinical exam.</p> | |
<ul class="list-disc list-inside text-sm text-gray-600 mb-1"> | |
<li>AMC MCQ Exam: tests knowledge across disciplines.</li> | |
<li>AMC Clinical Exam: practical assessment of clinical skills.</li> | |
<li>Consider preparatory courses or materials from AMC.</li> | |
</ul> | |
<a href="https://www.amc.org.au" class="text-primary text-sm hover:underline">Official AMC Info »</a> | |
</div> | |
<!-- NZREX Card --> | |
<div class="p-5 border border-gray-200 rounded-lg shadow-sm"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-1">NZREX (New Zealand Registration Exam)</h3> | |
<p class="text-sm text-gray-700 mb-2">NZREX is an exam for international medical graduates to practice in New Zealand. It is a clinical skills assessment simulating patient scenarios.</p> | |
<ul class="list-disc list-inside text-sm text-gray-600 mb-1"> | |
<li>Eligibility: must have passed USMLE Steps or PLAB, or equivalent exams, as a prerequisite.</li> | |
<li>Exam: OSCE format (Objective Structured Clinical Examination).</li> | |
<li>Plan ahead as NZREX is held only a few times a year with limited slots.</li> | |
</ul> | |
<a href="https://www.mcnz.org.nz/registration/exam" class="text-primary text-sm hover:underline">Official NZREX Info »</a> | |
</div> | |
<!-- FMGE (NExT) Card --> | |
<div class="p-5 border border-gray-200 rounded-lg shadow-sm md:col-span-2"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-1">FMGE / NExT (India)</h3> | |
<p class="text-sm text-gray-700 mb-2">FMGE is the Foreign Medical Graduates Examination for those who studied abroad and seek licensure in India. It is being transitioned to the NExT (National Exit Test) which will serve as a common exit exam for Indian medical graduates and licensure exam for foreign graduates.</p> | |
<ul class="list-disc list-inside text-sm text-gray-600 mb-1"> | |
<li>FMGE (until NExT is fully implemented): a bi-annual exam (June/Dec) testing clinical knowledge. Requires 50% to pass.</li> | |
<li>NExT: To become a single window exam β will have Step 1 (after final year) and Step 2 (after internship) covering broad medical subjects.</li> | |
<li>Stay updated with NMC (National Medical Commission) announcements for the latest format and dates.</li> | |
</ul> | |
<a href="https://www.nmc.org.in" class="text-primary text-sm hover:underline">More on NExT/FMGE »</a> | |
</div> | |
</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">Alumni Abroad Network</a> | |
</div> | |
</footer> | |
</div> | |