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

Hotel California – Eagles

Verse 1

Am                        E7 (Gb7?)

On a dark desert highway, cool wind in my hair

G                      D (D7?)

Warm smell of colitas, rising up through the air

F                         C       

Up ahead in the distance, I saw a shimering light

Dm 

My head grew heavy and my sight grew dim

E (E7?)

I had to stop for the night

Am        

There she stook in the doorway

E7                        G

I heard the mission bell, and I was thinking to myself

              D (D7?)

This could be heaven or this could be hell

F                         C

Then she lit up a candle, and she showed me the way

Dm

There were voices down the corridor

E (E7?)

I thought I heard them say

Chorus

F                        C

Welcome to the Hotel California

       E7

Such a lovely place

       Am

Such a lovely face

F                                   C

Plenty of the room at the Hotel California

    Dm

Any time of year

        E7

You can find it here

Verse 2

Am                           E7

Her mind is Tiffany twisted. She got a Mercedes Benz

G                              D

She got a lot of pretty pretty boys, that she calls friends

F                                C 

How they dance in the courtyard, sweet summer sweat 

Dm                      E

Some dance to remember, some dance to forget

Am

So I called up the Captain

E7

Please bring me my wine (he said)

G                                      D

We haven’t had that spirit here, since 1969

F                                        C

And still those voices are calling, from far away

Dm

Wake you up in the middle of the night

E

Just to hear them say

(Chorus)

 Verse 3

Am                         E7

Mirrors on the ceiling the pink champagne on ice (she said)

G                               D  

We are all just prisoners here, of our own device

F                            C

And in the master’s chambers they gathered for the feast

Dm                          

They stab it with their steely knives but they

E

just can’t kill the beast

Am                     E7

Last thing I remember, I was running for the door

G                                  D  

I had find the passage back to the place I was before 

F                           C

“Relax” said the night man (we are) programmed to receive

Dm

You can check out anytime you like

E

But you can never leave

(Chorus)

Dm

What a nice surprise

E

Bring your alibis

Video(s)

Easy Acoustic Guitar Lesson + Tutorial - Marty Music

Strumming Tutorial - JC Guitar

Intro Guitar Lesson - Andy Guitar

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