TEACHER TRAINERS

Ready-to-use worksheets for CELTA, DELTA, TEFL, TESOL teacher trainers — perfect for input sessions and workshops. Download for free!

Pick your topic

  • Lesson Planning

    Ready-made worksheets to help trainers guide trainees in structuring effective lessons, from setting objectives to staging activities.
    View >

  • Frameworks & Planning processes

    Resources covering key lesson frameworks (PPP, Test-Teach-Test, TBL, etc.) and the planning processes behind effective lesson design.
    View >

  • Practice Activities

    Engaging tasks and exercises to help trainees understand different types of practice and develop their ability to design meaningful practice stages.
    View >

  • Classroom Management 1

    Practical guidance on managing classrooms effectively, including teacher roles, giving instructions, and using resources and equipment.
    View >

  • Classroom Management 2

    Resources on motivation, discipline, and adaptive management strategies to create a positive learning environment that responds to needs.
    View >

  • Learner Errors

    Insights into different types of learner errors, their sources, and effective techniques for correction and feedback to support language development and foster learner autonomy.
    View >

  • Learning Preferences & Strategies

    Worksheets exploring how learners approach language learning, ways to adapt teaching to diverse styles, and promoting the development of effective learning strategies.
    View >

  • Second Language Acquisition

    An exploration of key theories, factors, and stages in the process of acquiring a second language, and how these insights inform teaching practices.
    View >

  • ELT Approaches & CLT

    An overview of key ELT approaches, with a focus on Communicative Language Teaching (CLT) and its principles and practices.
    View >

  • Presentation-Practice-Production

    Resources on structuring lessons using the PPP framework to introduce, reinforce, and practice language.
    View >

  • Test-Teach-Test

    A guide to the TTT approach, which assesses learners' prior knowledge before targeting gaps with focused instruction.
    View >

  • Task-based Language Teaching

    Materials on the theory behind TBL and how to use meaningful tasks as the foundation for language learning and skill development.
    View >

  • Guided Discovery

    Worksheets on helping learners uncover language rules through inductive learning and scaffolded tasks.
    View >

  • Meaning and Understanding

    Techniques for presenting language clearly and ensuring comprehension through effective CCQs and concept-checking strategies.
    View >

  • Grammar

    Materials to review approaches to teaching grammar, including techniques for analyzing, presenting, and practicing grammatical structures effectively.
    View >

  • Vocabulary

    Exploring the different aspects of a word and techniques for introducing, practising, and consolidating vocabulary.
    View >

  • Functional language

    Worksheets to establish the properties of functional language and techniques for analyzing, teaching, and practising language chunks in context.
    View >

  • Phonology 1

    Understanding and teaching pronunciation, focusing on segmental features like sounds, stress, and intonation.
    View >

  • Phonology 2

    Materials to teach suprasegmental features of phonology, such as rhythm, intonation patterns, and connected speech.
    View >

  • Discourse

    A theoretical exploration of spoken and written discourse, focusing on coherence, cohesion, pragmatics, and how language functions in real-world contexts.
    View >

  • Receptive Skills 1 | Practice

    An exploration of reading and listening skills and sub-skills, combining theory with practical techniques for effective classroom practice.
    View >

  • Receptive Skills 2 | Development

    Understanding the distinction between skills practice and skills development, with strategies to help learners become more independent and effective readers and listeners.
    View >

  • Productive Skills 1 | Speaking

    Examining speaking skills and sub-skills, with a focus on balancing accuracy and fluency through both theoretical insights and practical applications.
    View >

  • Productive Skills 2 | Writing

    Introduction to writing skills and sub-skills, emphasizing accuracy, effectiveness, and strategies for developing learners' written communication.
    View >

  • One-to-One

    Approaches and techniques for tailoring lessons to individual learners, addressing their specific needs, interests, and learning preferences.
    View >

  • Large Monolingual Classes

    Strategies for managing and engaging large classes where learners share the same first language, maximizing interaction and participation.
    View >

  • Mixed-Ability Classes

    Methods for handling diverse proficiency levels within a single classroom, ensuring differentiation and inclusive learning.
    View >

  • English as an International Language

    Exploring the role of English as a global language, its varieties, and implications for teaching in multilingual and multicultural contexts.
    View >

  • Literacy

    Approaches to developing literacy skills, including teaching reading and writing to learners with diverse literacy backgrounds.
    View >

  • Technology in ELT

    Integrating technology into language teaching, from digital tools and apps to interactive and blended learning approaches.
    View >

  • Online Teaching

    Best practices and strategies for effective language teaching in virtual learning environments, including engagement and interaction techniques.
    View >

  • Business English

    Teaching English for professional and workplace communication, focusing on business-specific vocabulary, writing, and speaking skills.
    View >

  • Professional Development 1

    Exploring different pathways for professional growth in ELT, including training opportunities, self-development strategies, and job-hunting tips.
    View >

Say Hello!

eltmate-mail

    This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

    QUICK LINKS

    Copyright eltmate.com – Privacy policy

    "; const source = 'data:application/vnd.ms-word;charset=utf-8,' + encodeURIComponent(header + contentHtml + footer); const fileLink = document.createElement("a"); fileLink.href = source; fileLink.download = `${fileName}.doc`; fileLink.click(); }function generatePDF(contentHtml) { const fileName = getDynamicFileName(); const printWindow = window.open('', '_blank'); if (!printWindow) { alert("Please allow pop-ups."); return; } printWindow.document.write(`${fileName}
    Preparing PDF...
    ${contentHtml}`); printWindow.document.close(); setTimeout(() => { printWindow.focus(); printWindow.print(); if (!/Android|iPhone|iPad|iPod/i.test(navigator.userAgent)) { printWindow.onfocus = function() { printWindow.close(); }; } }, 1000); }// --- 3. OBSERVER LOGIC --- const observer = new MutationObserver((mutations) => { const resultsWrapper = document.querySelector('.aipkit-ai-form-results'); const resultsContent = document.querySelector('.aipkit-ai-form-results-content'); // ONLY show buttons if results wrapper is visible AND contains actual text if (resultsWrapper && resultsWrapper.style.display !== 'none' && resultsContent && resultsContent.innerText.trim().length > 50 && !document.getElementById('custom-ai-toolbar')) { const nativeActions = resultsWrapper.querySelector('.aipkit-ai-form-results-top-actions'); if (nativeActions) nativeActions.style.display = 'none';const toolbar = document.createElement('div'); toolbar.id = 'custom-ai-toolbar'; toolbar.style.cssText = 'display:flex; justify-content:center; align-items:center; gap:15px; margin:30px 0; padding:10px; flex-wrap:wrap; width:100%;';const styleTag = document.createElement('style'); styleTag.innerHTML = ` .ai-custom-btn { width: 100px; height: 50px; background-color: #fa4f83; color: white !important; border: none !important; border-radius: 4px; font-family: inherit; font-weight: 500 !important; /* Force font weight */ display: flex; flex-direction: row; /* Horizontal layout */ align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s ease; font-size: 13px; text-align: center; box-sizing: border-box; } .ai-custom-btn i { font-size: 16px; margin-right: 8px; /* Space to the right of icon */ } .ai-custom-btn:hover { background-color: #d4436f; } .ai-custom-btn span { font-weight: 500 !important; } `; document.head.appendChild(styleTag);const copyBtn = document.createElement('button'); copyBtn.className = 'ai-custom-btn'; copyBtn.innerHTML = 'COPY';const wordBtn = document.createElement('button'); wordBtn.className = 'ai-custom-btn'; wordBtn.innerHTML = 'WORD';const pdfBtn = document.createElement('button'); pdfBtn.className = 'ai-custom-btn'; pdfBtn.innerHTML = 'PDF';copyBtn.onclick = async function() { if (await copyFormattedHtml(resultsContent.innerHTML)) { const oldInner = copyBtn.innerHTML; copyBtn.innerHTML = 'DONE'; setTimeout(() => { copyBtn.innerHTML = oldInner; }, 2000); } };wordBtn.onclick = () => generateWord(resultsContent.innerHTML); pdfBtn.onclick = () => generatePDF(resultsContent.innerHTML);toolbar.appendChild(copyBtn); toolbar.appendChild(wordBtn); toolbar.appendChild(pdfBtn); resultsWrapper.parentNode.insertBefore(toolbar, resultsWrapper.nextSibling); } });observer.observe(document.body, { childList: true, subtree: true }); })();