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

Sound of Silence – Simon & Garfunkel

Verse 1

Am                     G

Hello darkness, my old friend,

                           Am

I’ve come to talk with you again,

                     F      C

Because a vision softly creeping,

                        F       C

Left it’s seeds while I was sleeping,

        F                             C

And the vision that was planted in my brain

              C/B Am

Still remains

C          G        Am

Within the sound of silence.

Verse 2

?

In restless dreams I walked alone

?

Narrow streets of cobblestone,

?

‘neath the halo of a street lamp,

?

I turned my collar to the cold and damp

?

When my eyes were stabbed by the flash of a neon light

?

That split the night

?

And touched the sound of silence.

Verse 3

?

And in the naked light I saw

?

Ten thousand people, maybe more.

?

People talking without speaking,

?

People hearing without listening,

?

People writing songs that voices never share

?

And no one dare

?

Disturb the sound of silence.

Verse 4

?

Fools said I, you do not know

?

Silence like a cancer grows.

?

Hear my words that I might teach you,

?

Take my arms that I might reach you.

?

But my words like silent raindrops fell,

?

And echoed

?

In the wells of silence.

Verse 5

?

And the people bowed and prayed

?

To the neon God they made.

?

And the sign flashed out it’s warning,

?

In the words that it was forming.

?

And the sign said, the words of the prophets

?

Are written on the subway walls

?

And tenement halls.

Video(s)

Guitar Lesson - JustinGuitar Songs

Guitar Lesson + Tutorial - Marty Music

Guitar Tutorial | Fingerpicking + Easy Chords - 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); } });