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

Annies Song – John Denver

[Intro]

D   Dsus4   D   Dsus4   D   Dsus4
 

[Verse 1]

D     Dsus4      G  A   Bm        G           D     D/C#  Bm

  You fill up my senses    like a night in a forest

         A            G     F#m  Em        G            A7

Like the mountains in springtime    like a walk in the rain

                    G A    Bm        G           D    D/C#  Bm

Like a storm in the desert    like a sleepy blue ocean

    A          G  F#m  Em      A7       D    Dsus4

You fill up my senses     come fill me again

 

[Verse 2]

D  Dsus4       G    A   Bm        G            D     D/C#  Bm

   Come let me love you,   let me give my life to you

       A             G    F#m  Em        G           A7

Let me drown in your laughter,    let me die in your arms

                  G    A   Bm        G         D        D/C#  Bm

Let me lay down beside you,   let me always be with you

A           G    F#m  Em      A7       D    Dsus4

Come let me love you,    come love me again

 

[Instrumental]

 
D  Dsus4 G  A  Bm  G  D  D/C# Bm
A   G   F#m Em  G  A7 A7 A7
A7 G  A  Bm       G            D    D/C# Bm

           let me give my life to you

A           G    F#m  Em      A7      D    Dsus4

Come let me love you,    come love me again

 

[Verse 3]

 
D     Dsus4      G  A   Bm        G          D      D/C#  Bm

  You fill up my senses    like a night in a forest

         A            G     F#m  Em        G           A7

Like the mountains in springtime    like a walk in the rain

                    G A    Bm        G           D    D/C#  Bm

Like a storm in the desert    like a sleepy blue ocean

    A          G  F#m  Em      A7       D    Dsus4

You fill up my senses     come fill me again

 

[Ending]

D   Dsus4   D   Dsus4   D

Video(s)

Annie's Song (Official Audio) - John Denver

Top of the Pops December 27, 1974 - John Denver

Guitar Lesson - GuitarLessons365Song

How To Play | Beginner Guitar Lesson - Simplified Guitar

Fingerstyle Guitar Tutorial tabs and chords - lonelypicker

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