Skip Navigation Website Accessibility
 


Top Hits of 2020 for Easy Guitar

available at

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

Fourteen of the year's top hits in arrangements for easy guitar in standard notation and tab, including lyrics. Includes: Adore You (Harry Styles) • Before You Go (Lewis Capaldi) • Better Day (OneRepublic) • Cardigan (Taylor Swift) • Daisies (Katy Perry) • I Dare You (Kelly Clarkson) • Level of Concern (twenty one pilots) • No Time to Die (Billie Eilish) • Rain on Me (Lady Gaga and Ariana Grande) • and 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'; }