- MusicHub - https://musichub.greensparkstudio.com/ -

Hey Ho – The Lumineers

Verse 1

C                              F C

I’ve been trying to do it right   (Hey!)

C                             F C

I’ve been living a lonely life   (Ho!)

C                              F C

I’ve been sleeping here instead (Hey!)

C                           F C

I’ve been sleeping in my bed   (Ho!)

Am       G        F     C

Sleeping in my bed        (Hey!)

Intro here 1x

C                F C

So show me family   (Hey!)

C                               F C

All the blood that I will bleed     (Ho!)

C                           F C

I don’t know where I belong     (Hey!)

C                               F C

I don’t know where I went wrong     (Ho!)

C                                F C

I don’t know where I went wrong     (Hey!)

Am         G         F    C

But I can write a song    (Hey!)

(Two, three…)

Chorus

  Am                   G

I belong with you, you belong with me

               C

You’re my sweetheart

  Am                   Am

I belong with you, you belong with me

              C

You’re my sweet (Ho!)

Intro here x2

Verse 2

C                                 F C

I don’t tink you’re right for him     (Hey!)

C                                      F C

Think of what it might’ve been, if you      (Ho!)

C                       F C

Took a bus to Chinatown    (Hey!)

C                        F C

I’d be standing on Canal      (Ho!)

C         F C

And Bowery   (Hey!)

Am                    G        F   C

And she’d be satnding next to me   (Hey!) 

(Chorus)

Bridge

F     C   Gsus4  C

Love, we need it now

      F     C   Gsus4

Let’s hope for some, Cause

[Chords]

Oh, we’re bleeding out

(Chorus)

Ho! 

Hey!

Ho!

Hey!

 

Video(s)

Easy Acoustic Songs Lessons - GuitarJamz

How to Play Chords - Let'sPlayGuitar!

Easy Acoustic Song - swiftlessons

.auto-scroll { position: fixed; left: 20px; top: 60%; transform: translateX(-60%); z-index: 1000; width: 35px; text-align:center; } .auto-scroll button { font-size: 14px; padding:0px; margin-bottom:5px; border: none; background-color: #992600; border-radius: 50px; cursor: pointer; box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; transition: all 0.3s ease; width: 30px; height: 30px; } .auto-scroll button.active { background-color: #2196F3; color: #fff; } .auto-scroll button i { font-size: 18px; display: block; } .auto-scroll button i.fa-pause-circle { font-size: 18px; }
var scrollInterval; var currentSpeed = 1; function startScroll(speed) { var scrollSpeed = 1; if (speed === 2) { scrollSpeed = 2; } else if (speed === 3) { scrollSpeed = 3; } currentSpeed = speed; document.querySelectorAll(".auto-scroll button").forEach(function(btn) { btn.classList.remove("active"); }); document.getElementById("speed-" + speed + "x").classList.add("active"); scrollInterval = setInterval(function() { window.scrollBy(0, scrollSpeed); if ((window.innerHeight + window.pageYOffset) >= document.body.offsetHeight) { stopScroll(); resetScroll(); } }, 50); } function stopScroll() { clearInterval(scrollInterval); } function resetScroll() { document.getElementById("start-stop").innerHTML = ''; document.querySelectorAll(".auto-scroll button:not(#start-stop)").forEach(function(btn) { btn.setAttribute("disabled", true); btn.classList.remove("active"); }); } document.getElementById("start-stop").addEventListener("click", function() { if (this.innerHTML === '') { startScroll(1); this.innerHTML = ''; document.querySelectorAll(".auto-scroll button:not(#start-stop)").forEach(function(btn) { btn.removeAttribute("disabled"); }); } else { stopScroll(); resetScroll(); } }); document.getElementById("speed-1x").addEventListener("click", function() { if (currentSpeed !== 1) { stopScroll(); startScroll(1); } }); document.getElementById("speed-2x").addEventListener("click", function() { if (currentSpeed !== 2) { stopScroll(); startScroll(2); } }); document.getElementById("speed-3x").addEventListener("click", function() { if (currentSpeed !== 3) { stopScroll(); startScroll(3); } });