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

More Than Words – Extreme

Verse 1

G          Cadd9

Saying I love you is

Am7             C       D         G

not the words I want to hear from you

G                Cadd9

It’s not that I want you

Am7            C      D    Em

not to say but if you only knew

Bm7   Am7

Ho-ow ea-sy

D              G      D/F#     Em

It would be to show me how you feel

Bm7       Am7       D7              G7

More than words  is all you have to do 

G7              C

To make it real

C         Cm              G

Then you wouldn’t have to say

          Em7

That you love me ‘cos

Am7     D7     G

I’d  already know

Chorus

G                 D/F#   Em        Bm      C

What would you do if my heart was torn in two

C                    G/B     Am7             D7                G

More than words to show you feel that your love for me is real

G                   D/F#  Em7        Bm7    C

What would you say if I took those words away?

C                     G/B      Am7

Then you couldn’t make things new

         D7             G

Just by saying I love you

Verse 2

G          Cadd9

Now that I’ve tried to 

Am7             C       D         G

Talk to you and make you understand

G                Cadd9

All that you have to do is

Am7            C               D          Em

Close your eyes and just reach out your hands

Bm7   Am7

And touch me

D              G      D/F#     Em

Hold me close don’t ever let me go

    Bm7      Am7

More than words

D7           G7                 C

Is all I ever needed you to show

C        Cm                   G

Then you wouldn’t have to say

                Em7

That you love me

Am7    D7           G

Cos I’d All Ready Know

G                 D/F#   Em        Bm      C

What would you do if my heart was torn in two

C                    G/B     Am7             D7                G

More than words to show you feel that your love for me is real

G                   D/F#  Em7        Bm7    C

What would you say if I took those words away?

C                     G/B      Am7

Then you couldn’t make things new

         D7             G

Just by saying I love you

Video(s)

Guitar Lesson - JustinGuitar Songs

Guitar Cover Acoustic | Tabs + Chords - GuitarZero2Hero Express

Guitar Lesson | TABS + Fingerpicking - GuitarZero2Hero

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