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

Teardrops On My Guitar – Taylor Swift

[Intro]

 

G Em C D
 

 

[Verse 1]

 

G      Em       C     D

  Drew looks at me, I fake a smile so he won’t see

G        Em           C        D

  That I want and I’m needing, everything that we should be

 

 

[Pre-Chorus 1]

 

Em                         C

  I’ll bet she’s beautiful, that girl he talks about

G                               D

  And she’s got everything that I have to live without

 

 

[Verse 2]

 

G      Em       C     D

  Drew talks to me, I laugh cause it’s just so funny

G        Em         C    D

  That I can’t even see, anyone when he’s with me

 

 

[Pre-Chorus 2]

 

Em                       C

  He says he’s so in love, he’s finally got it right

G                           D

  I wonder if he knows he’s all I think about at night

 

 

[Chorus]

 

G                         D

  He’s the reason for the teardrops on my guitar

Em                             C

  The only thing that keeps me wishing on a wishing star

G                      D                              Em       C

  He’s the song in the car I keep singing, don’t know why I do

 

 

[Verse 2]

 

G      Em       C   D

  Drew walks by me, can he tell that I can’t breathe?

G              Em             C

  And there he goes so perfectly

            D

The kind of flawless I wish I could be

 

 

[Pre-Chorus 3]

 

Em                            C

  She’d better hold him tight, give him all her love

G                             D

  Look in those beautiful eyes and know she’s lucky cause

 

 

[Chorus]

 

G                         D

  He’s the reason for the teardrops on my guitar

Em                             C

  The only thing that keeps me wishing on a wishing star

G                      D                              Em       C

  He’s the song in the car I keep singing, don’t know why I do

 

 

[Instrumental]

 

G Em C D
 

 

[Bridge]

 

Em                      C

  So I drive home alone, as I turn out the light

G                             D

  I put his picture down, and maybe get some sleep tonight

 

 

[Chorus]

 

G                               D

  Cause he’s the reason for the teardrops on my guitar

Em                        C

  The only one who’s got enough of me to break my heart

 

G                      D                              Em       C

  He’s the song in the car I keep singing, don’t know why I do

          G                           D

He’s the time, taken up, but there’s never enough

         Em                      C

And he’s all that I need to fall into

 

 

[Outro]

 

G      Em       C     D                        G

  Drew looks at me, I fake a smile so he won’t see

 

Video(s)

Teardrops on My Guitar (Live on the Fearless Tour) | Taylor Swift's Tour Extras

Teardrops On My Guitar Live at Revival - Taylorswiftmusiicvid

Teardrops On My Guitar Guitar Tutorial - Guitar Goddess

How to play Teardrops On My Guitar | Easy Lesson - JustinGuitar Songs

Teardrops On My Guitar (Live Acoustic Version) - Nena Shelby

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