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

Words – Bee Gees

[Verse 1]

 
  G

Smile an everlasting smile

                        A [2: orchestra implies A6]

A smile can bring you near to me

        D7

Don’t ever let me find you gone

                          C/G     G

‘Cause that would bring a tear to me

 

[Chorus 1]

 
      Bb

This world has lost its glory

                               F

Let’s start a brand new story now, my love

       G

Right now there’ll be no other time

                    A       D7

And I can show you how, my love

 

[Verse 2]

 

Talk in everlasting words

And dedicate them all to me

And I will give you all my life

I’m there if you should call on me

 

[Chorus 2]

 
      Bb

You think that I don’t even mean

         D  [N.C.]

A single word I say

            G                        D7

It’s only words and words are all I have

                   G     D7

To take your heart away

 

[repeat verse with wordless vocal]

[repeat chorus 2]

 

[Coda:]

(2X, second time acapella):

             G                        D7

It’s only words and words are all I have

                    G     D7

To take your heart away

 

[Tag]

G      D7/F#      G  D7    G [arpeggiate]
/ / / /  / / / /  / / / /  /

Video(s)

Bee Gees "Words" on - The Ed Sullivan Show

Bee Gees {Stereo} 1968- Smurfstools Oldies Music Time Machine

Acoustic Guitar Lesson (Easy) - Alan Robinson

Guitar Lesson - Ivor Sorefingers

Easy Guitar Chords Tutorial with Lyrics SHORT - Doc OTEP Studio

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