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

Imagine – John Lennon

Verse 1

C               Cmaj7 F

Imagine there’s no heaven

C            Cmaj7 F

It’s easy if you try

C         Cmaj7 F

No hell below   us,

C          Cmaj7 F

Above us only    sky

Bridge 1

F       C/E     Dm    Dm/C 

Imagine all the people

G          G6Sus4 G7               C

Living for to-    day. Ah-ha Ha-ah Ha

Verse 2

C               Cmaj7  F 

Imagine there’s no countries

C             Cmaj7 F

It isn’t hard to    do

C               Cmaj7  F

Nothing to kill or die for

C          Cmaj7 F

And no religion  too

Bridge 2

F       C/E     Dm    Dm/C 

Imagine all the people

G           G6Sus4 G7                    C

Living life in     peace. You-hoo-hoo-oo oo

Chorus

F       G         C      Cmaj7 E E7 F

You may say I’m a dreamer

F       G            C   Cmaj7 E E7 F 

But I’m not the only one

F           G          C      Cmaj7 E E7 F

I hope some day you’ll join us

F       G          C

And the world will be as one

Verse 3

C          Cmaj7 F

Imagine no possessions

C           Cmaj7 F

I wonder if you   can

C                 Cmaj7 F

No need for greed or    hunger

C             Cmaj7 F

A brotherhood of    man

Bridge 3

F       C/E     Dm     Dm/C

Imagine all the people

G           G6Sus4 G7                    C

Sharing all the    world. You-hoo-hoo-oo oo

Chorus

F       G         C      Cmaj7 E E7 F

You may say I’m a dreamer

F       G            C   Cmaj7 E E7 F 

But I’m not the only one

F           G          C      Cmaj7 E E7 F

I hope some day you’ll join us

F       G          C

And the world will be as one

Video(s)

Easy Guitar Lesson - JustinGuitar Songs

Beginner Guitar Lesson Made Easy! - Swiftlessons

Acoustic Guitar Lesson - Marty Music

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