Skip Navigation Website Accessibility
 


Faber Piano Adventures Level 2A and 2B

available at

Low in-store inventory, may be subject to change.

Level 2A

Level 2A introduces eighth notes and includes C, G, D and A major and minor 5- finger positions. Transposition and functional harmony skills are presented in highly musical settings.

Level 2B

Level 2B presents cross-hand arpeggios and the full major scales in the keys of C, G, and F. Use of connected pedal and a variety of repertoire keep the students musically engaged as they explore I, IV, V7 chords.

// === GLOBAL NAV BEHAVIOR FOR MARICH MUSIC === // --- DROPDOWN ON HOVER (DESKTOP ONLY) --- document.addEventListener('DOMContentLoaded', function () { const dropdowns = document.querySelectorAll('.dropdown'); dropdowns.forEach(drop => { drop.addEventListener('mouseenter', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'block'; }); drop.addEventListener('mouseleave', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'none'; }); }); }); // --- TOGGLE CUSTOM NAV ON MOBILE --- function toggleMobileNav() { const nav = document.querySelector('.menubg'); if (!nav) return; const isVisible = window.getComputedStyle(nav).display !== 'none'; nav.style.display = isVisible ? 'none' : 'flex'; }