Skip Navigation Website Accessibility
 


Faber Piano Adventures Primer Level

available at

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

The Primer Level introduces the keyboard, note values, and the grand staff. Students play in Middle C Position and C Position through recognition of steps and skips, and learn letter names independent of finger number. Musicianship is built through the use of dynamics and coloristic experimentation with the pedal.

// === 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'; }