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

Wild World – Cat Stevens (Yusuf Islam)

[Intro]

Am        D7                  G

 La-la-la-la-la-la-la-la, la, la

          C                   F

 La-la-la-la-la-la-la-la, la, la

          Dm                  E      Esus4  E

 La-la-la-la-la-la-la-la, la, la-la, la

 

[Verse 1]

Am             D7                 G

 Now that I’ve lost everything to you

            C                     F

You say you wanna start something new

         Dm                       E

And it’s breaking my heart you’re leaving

         Esus4 E

Baby I’m griev-ing

Am                D7               G

 But if you wanna leave, take good care

                C                     F

Hope you have a lot of nice things to wear

           Dm                      E7       G   (riff 1)

But then a lot of nice things turn bad out there

 

Riff 1:
e|—————————|
B|—–0-0-0-0-0-0-0-0-0-0-0-|
G|—0-0-0-0-0-0-0-0-0-0-0-0-|
D|-0-3—3—2—2—0—0—|
A|—————————|
E|—————————|

 

[Chorus]

C    G                 F         (riff 2)

 Oh, baby, baby it’s a wild world

 

Riff 2:
e|——————|
B|-1p0————–|
G|—–2p0———-|
D|———3p2p0—-|
A|—————3–|
E|—————–3|

 

G                 F               C    (riff 3)

 It’s hard to get by, just upon a smile

 

Riff 3:
e|———————|
B|———————|
G|———————|
D|———————|
A|—–0-3-3-3-0——-|
E|–3-3———–3—-|

 

C    G                 F         (riff 2)

 Oh, baby, baby it’s a wild world

G              F                 C          Dm    E  (riff 4)

 I’ll always remember you like a child girl

 

Riff 4:
  (Dm        E)
e|——-1——–0–|
B|—–3——–0—-|
G|—2——–1——|
D|-0——–2——–|
A|——————-|
E|——————-|
 

[Verse 2]

Am                    D7                        G

 You know I’ve seen a lot of what the world can do

         C                    F

And it’s breaking my heart in two

      Dm                    E

But I never want to see you sad girl

           Esus4 E

Don’t be a bad   girl

Am                 D7               G

But if you want to leave, take good care

                C                       F

Hope you make a lot of nice friends out there

           Dm                          E7    G   (riff 1)

But just remember there’s a lot of bad and beware

 

[Chorus]

C    G                 F         (riff 2)

 Oh, baby, baby it’s a wild world

G                 F               C    (riff 3)

 It’s hard to get by, just upon a smile

C    G                 F         (riff 2)

 Oh, baby, baby it’s a wild world

G              F                 C          Dm    E  (riff 4)

 I’ll always remember you like a child girl

 

[Bridge]

  Am        D7               G

…la-la-la-la-la-la-la, la, la

         C                        F

La-la-la-la-la-la-la-la la la-la, la

         Dm                       E

La-la-la-la-la-la-la-la la la-la, la

Esus4   E

Baby, I love you

Am                 D7               G

But if you want to leave, take good care

                C                     F

Hope you make a lot of nice friends out there

           Dm                          E7       G  (riff 1)

But just remember there’s a lot of bad and beware

 

[Chorus]

C    G                 F         (riff 2)

 Oh, baby, baby it’s a wild world

G                 F               C    (riff 3)

 It’s hard to get by, just upon a smile

C    G                 F         (riff 2)

 Oh, baby, baby it’s a wild world

G              F                 C          Dm    E  (riff 4)

 I’ll always remember you like a child girl

C    G                 F         (riff 2)

 Oh, baby, baby it’s a wild world

G                 F               C    (riff 3)

 It’s hard to get by, just upon a smile

C    G                 F         (riff 2)

 Oh, baby, baby it’s a wild world

G              F                 C

 I’ll always remember you like a child girl 

 

Video(s)

Wild World - Yusuf ISLAM / Cat Stevens (Live 2011)

Wild World - Yusuf / Cat Stevens

Wild World by Cat Stevens | Easy Guitar Lesson - JustinGuitar Songs

Cat Stevens Wild World Guitar Lesson + Tutorial - Marty Music

Wild World Chords + TAB Guitar Tutorial - 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); } });