Government Pavilion, C/ Padre Herrera s/n
Post Office Box 456
38200, San Cristobal de La Laguna
Santa Cruz de Tenerife - Spain
Switchboard Tel.: (+34) 922 31 90 00
Hours: Mon, 8:00 a.m. to 9:00 p.m.
To train hospitality professionals in basic language skills to meet the needs of tourists.
To train hospitality professionals in basic language skills to respond to
the needs of tourists.
The training activities to be carried out during the delivery of the micro-credential will be:
● Theoretical classes: expository, explanatory or demonstration sessions of the contents and knowledge.
●Practical classes: sessions of practical application of the content developed in the theoretical classes, through the resolution of exercises, problems or theoretical-practical scenarios.
● Seminars, workshops, or other complementary activities (discussion forums, simulations, etc.): monographic sessions that encourage student participation. These are supervised by the course instructors.
●Independent work: independent and self-regulated activity of the student based on the documentation and guidelines proposed in the subject, preparation of classes and exams, preparation of final reports, internship reports…
● Tutoring (individual, group…): activity in which the teaching staff attends to, facilitates and guides one or more students in the training process.
● Assessment: continuous assessment tests and final exams. Tests may be in person or virtual, and may be written, oral, or consist of practical exercises.
The teaching methodology is as follows:
● Lectures/expository method: presentation or explanation by the teaching staff.
● Practical classes: activities supervised by the teaching staff in the classroom, laboratories, clinics.
●Seminars: carrying out exercises, solving problems or practical cases, others.
●Individual work: individual preparation of assignments/projects/reports, portfolio,
● Group work: group preparation of assignments, projects/reports, …
● Personal study: preparation for tests, exams, etc.
● Assessment: written tests, oral tests, practical tests, …
● Tutoring: instruction period in which teachers and students interact with the aim of reviewing and discussing materials and topics presented in class.
● Active methodologies: cooperative learning, project-based learning, flipped classroom, service learning, game-based learning, case studies, problem-solving…
They are aimed at making learning a participatory process and are based on the leading role of the students.
The microcredential will have an evaluation system (ES) based on the following assessment tests:
Credits: 3 ECTS
Duration: 25/05/2026 – 29/05/2026
Teaching modality: 100% Synchronous Online Training
Location: ULL Virtual Campus
Schedule: Monday to Friday from 3:00 PM to 9:00 PM.
The cost of tuition for this Microcredential will be subsidized by the 'Plan for the development of university microcredentials', investment 6 of component 21 of the Addendum to the 'Recovery, Transformation and Resilience Plan', financed by the European Union – Next Generation EU, year 2025.
Short courses available in various formats (in-person, online, or hybrid). Ideal for learning without interrupting your professional life.
Content created and delivered by professionals and experts in the field, designed for immediate application.
Endorsed by the University of La Laguna. You will receive an official ECTS certificate, valid in the European Higher Education Area.


In collaboration with:


// Variables comunes (mejoramos el encoding para email) const pageUrl = window.location.href; const pageTitle = document.title;
// Funciones de compartir (las de redes con window.open siguen iguales, pero agregamos return false para evitar salto de página) function shareFacebook() { window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(pageUrl)}`, '_blank', 'width=600,height=400'); } function shareLinkedIn() { window.open(`https://www.linkedin.com/sharing/share-offsite/?url=${encodeURIComponent(pageUrl)}`, '_blank', 'width=600,height=500'); } function shareTelegram() { window.open(`https://t.me/share/url?url=${encodeURIComponent(pageUrl)}&text=${encodeURIComponent(pageTitle)}`, '_blank', 'width=600,height=400'); } function shareWhatsApp() { window.open(`https://api.whatsapp.com/send?text=${encodeURIComponent(pageTitle + ' ' + pageUrl)}`, '_blank'); }
// Función para compartir por email (copia al portapapeles + fallback Gmail) function shareByEmail() { const pageUrl = window.location.href; const pageTitle = document.title.trim();
// Texto listo para pegar en email (con salto de línea) const emailText = `${pageTitle}\n${pageUrl}\n\nTe comparto este artículo interesante.`;
// Intentamos copiar al portapapeles if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(emailText).then(() => { // Mensaje de éxito (puedes usar alert, toast o un div temporal) alert('¡Enlace copiado al portapapeles!\nPégalo en tu email (Ctrl+V).'); }).catch(err => { console.error('Error al copiar:', err); fallbackToGmail(); }); } else { // Si no soporta clipboard (navegadores muy viejos) fallbackToGmail(); } }
function fallbackToGmail() { const pageUrl = encodeURIComponent(window.location.href); const pageTitle = encodeURIComponent(document.title); const body = encodeURIComponent(document.title + '\n' + window.location.href + '\n\nTe comparto esto:');
// Abre compose de Gmail window.open(`https://mail.google.com/mail/?view=cm&fs=1&su=${pageTitle}&body=${body}`, '_blank', 'width=800,height=600'); }