Skip Navigation Website Accessibility
 


Taylor Swift - Really Easy Guitar

available at

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

Easy-to-follow charts to get you playing right away are presented in this collection for all guitarists. Includes 22 songs in chords, lyrics and basic tab: Back to December • Cardigan • Exile • Look What You Made Me Do • Mean • The One • Our Song • Safe & Sound • Teardrops on My Guitar • We Are Never Ever Getting Back Together • White Horse • You Need to Calm Down • 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'; }