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

Angel De Amor by Maná

[Verse 1]

F#m     D      A      C#m    F#m  D  A  C#m

  Quién te cortó las alas mi ángel

Quién te arrancó los sueños hoy

Quién te arrodilló para humillarte

y quien enjauló tu alma amor

 

[Pre-chorus]

D

 Déjame curarte vida

E               C#m

 Déjame darte todo mi amor

 

[Chorus]

F#m  D  E

Ángel!

C#m      F#m     D   E  C#m

Ángel, ángel de amor

F#m       D      E        C#m     F#m  D  E

No te abandones, no te derrumbes amor

 

[Verse 2]

F#m      D      A      C#m     F#m  D  A  C#m

  Quien ató tus manos ató el deseo

Quien mató tu risa mató tu dios

Quién sangró tus labios y tu credo

Porqué lo permitiste angel de amor

 

[Pre-chorus]

D

 Déjame curarte vida

E               C#m

 Déjame darte todo mi amor

 

[Chorus]

F#m  D  E

Ángel!

C#m      F#m     D   E  C#m

Ángel, ángel de amor

F#m       D      E        C#m     F#m  D  E

No te abandones, no te derrumbes amor

 
F#m  D  E

Ángel!

       C#m      F#m     D   E  C#m

Ángel, ángel te doy mi amor

F#m      D     E        C#m      F#m  D  E  C#m

Abre tus alas, deja tus sueños volar

 

[Instrumental]

F#m ///  A
F#m ///  D
F#m ///  A
F#m  D  E  C#m
 

[Chorus]

F#m  D  E

Ángel!

C#m    F#m    D   E  C#m

Somos arena y mar

F#m       D      E        C#m     F#m  D  E  C#m

No te abandones, no te derrumbes amor

F#m  D  E

Ángel!

       C#m      F#m     D   E  C#m

Ángel, ángel te doy mi amor

F#m      D     E        C#m      F#m  D  E

Abre tus alas, deja tus sueños volar

 

[Ending]

F#m  D  E  C#m

Áaaaaaaaangel de amor! (Pero mi amor ya nunca te derrumbes)

(4x)

Video(s)

Tutorial de Angel De Amor - Ckriz Class Guitar

Tutorial De Guitarra - David Lambo

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