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

Here Without You – 3 Doors Down

[Intro]

Bm    G  A

[Verse 1]

          Bm

A hundred days have made me older

          A                                      Bm  G  A

Since the last time that I saw your pretty face

           Bm

A thousand lies have made me colder

      A                                        Bm  G  A

And I don’t think I can look at this the same

Bm                          A

But all the miles that seperate

Bm                           G                A

They dissapear now, when I’m dreaming of your face

 

[Chorus]

D                              A

I’m here without you, baby

                                    Bm

But you’re still on my lonely mind

                         G           A                       D

I think about you, baby, and I dream about you all the time

                            A

I’m here without you, baby

                               Bm

But you’re still with me in my dreams

        G    A                    Bm   A    Bm  G  A

And tonight, there’s only you and me, yeah

 

[Verse 2]

    Bm

The miles just keep rollin’

       A                                    Bm  G  A

As the people leave their way to say hello

                Bm

I’ve heard this life is overrated

      A                              Bm      G    A

But I hope that it gets better as we go, ohh yeah yeah

 

[Chorus]

D                              A

I’m here without you, baby

                                    Bm

But you’re still on my lonely mind

                         G           A                       D

I think about you, baby, and I dream about you all the time

                            A

I’m here without you, baby

                               Bm

But you’re still with me in my dreams

       G          A                    Bm

And tonight girl, there’s only you and me

 

[Bridge]

Bm                 D

Everything I know, and anywhere I go

A                         G

It gets hard but it won’t take away my love

Bm                           D

And when the last one falls, and when it’s all said and done

A                           G            G

It gets hard, but it won’t take away my love, whoa

 

[Interlude]

| D      | A      | Bm     | G  A    |
 

[Chorus]

(slightly altered)

D                           A

I’m here without you, baby

                              Bm

But you’re still on my lonely mind

                         G           A

I think about you, baby, and I dream about you all the time

D                           A

I’m here without you, baby

                               Bm

But you’re still with me in my dreams

    G              A                    D   A         Bm

And tonight, girl, there’s only you and me, yeah, ohh yeah

G   A     Bm

Ohhh, I’m alone

Video(s)

(Live) (1080p) - Frank Rovers

Live @ Rock am Ring 2011 - janwillemhr

Guitar Lesson (Tutorial) Chords - Let'sPlayGuitar!

Guitar Lesson | Easy Chords - GuitarZero2Hero

How to Play the Intro - GuitarJamz

.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); } });