Skip Navigation Website Accessibility
 


Hal Leonard Bagpipe Method

available at

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

The Hal Leonard Bagpipe Method is designed for anyone just learning to play the Great Highland bagpipes. This comprehensive and easy-to-use beginner's guide serves as an introduction to the bagpipe chanter. It includes access to online video lessons with demonstrations of all the examples in the book! Lessons include: the practice chanter, the Great Highland Bagpipe scale, bagpipe notation, proper technique, grace-noting, embellishments, playing and practice tips, traditional tunes, buying a bagpipe, and much more!

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