mirror of
https://github.com/beetbox/beets.git
synced 2025-12-09 01:54:08 +01:00
lyrics: add tests to track which websites can be scraped by our algo and be
used as sources fot the google custom search engine.
This commit is contained in:
parent
0b315cf8c8
commit
117d16f2ad
22 changed files with 8388 additions and 19 deletions
|
|
@ -22,6 +22,7 @@ import urllib
|
|||
import json
|
||||
import unicodedata
|
||||
import difflib
|
||||
import string
|
||||
|
||||
from beets.plugins import BeetsPlugin
|
||||
from beets import ui
|
||||
|
|
@ -239,8 +240,8 @@ def slugify(text):
|
|||
# http://stackoverflow.com/questions/295135/turn-a-string-into-a-valid-
|
||||
# filename-in-python
|
||||
|
||||
# Remove content within parentheses
|
||||
pat = "([^,\(]*)\((.*?)\)"
|
||||
text = re.sub("['_-]", ' ', text)
|
||||
pat = "([^,\(]*)\((.*?)\)" # Remove content within parentheses
|
||||
text = re.sub(pat, '\g<1>', text).strip()
|
||||
try:
|
||||
text = unicodedata.normalize('NFKD', text).encode('ascii', 'ignore')
|
||||
|
|
@ -305,34 +306,49 @@ def sanitize_lyrics(text):
|
|||
|
||||
return text
|
||||
|
||||
def remove_credits(text):
|
||||
"""Remove first/last line of text if it contains the word 'lyrics'
|
||||
eg 'Lyrics by songsdatabase.com'
|
||||
"""
|
||||
textlines = text.split('\n')
|
||||
credits = None
|
||||
for i in (0,-1):
|
||||
if textlines and 'lyrics' in textlines[i].lower():
|
||||
credits = textlines.pop(i)
|
||||
if credits:
|
||||
text = '\n'.join(textlines)
|
||||
return text
|
||||
|
||||
def is_lyrics(text, artist):
|
||||
|
||||
def is_lyrics(text, artist=None):
|
||||
"""Determine whether the text seems to be valid lyrics.
|
||||
"""
|
||||
badTriggers = []
|
||||
if not text:
|
||||
return
|
||||
|
||||
badTriggersOcc = []
|
||||
nbLines = text.count('\n')
|
||||
if nbLines <= 1:
|
||||
log.debug("Ignoring too short lyrics '%s'" % text)
|
||||
return 0
|
||||
elif nbLines < 5:
|
||||
badTriggers.append('too_short')
|
||||
badTriggersOcc.append('too_short')
|
||||
else:
|
||||
# Don't penalize long text because of lyrics keyword in credits
|
||||
textlines = text.split('\n')
|
||||
popped = False
|
||||
for i in [len(textlines) - 1, 0]:
|
||||
if 'lyrics' in textlines[i].lower():
|
||||
popped = textlines.pop(i)
|
||||
if popped:
|
||||
text = '\n'.join(textlines)
|
||||
# Lyrics look legit, remove credits to avoid being penalized further
|
||||
# down
|
||||
text = remove_credits(text)
|
||||
|
||||
for item in artist, 'lyrics', 'copyright', 'property':
|
||||
badTriggers += [item] * len(re.findall(r'\W%s\W' % item, text, re.I))
|
||||
badTriggers = ['lyrics', 'copyright', 'property']
|
||||
if artist:
|
||||
badTriggersOcc += [artist]
|
||||
|
||||
if badTriggers:
|
||||
log.debug('Bad triggers detected: %s' % badTriggers)
|
||||
for item in badTriggers:
|
||||
badTriggersOcc += [item] * len(re.findall(r'\W%s\W' % item, text, re.I))
|
||||
|
||||
return len(badTriggers) < 2
|
||||
if badTriggersOcc:
|
||||
log.debug('Bad triggers detected: %s' % badTriggersOcc)
|
||||
|
||||
return len(badTriggersOcc) < 2
|
||||
|
||||
|
||||
def scrape_lyrics_from_url(url):
|
||||
|
|
@ -403,7 +419,7 @@ def fetch_google(artist, title):
|
|||
if 'error' in data:
|
||||
reason = data['error']['errors'][0]['reason']
|
||||
log.debug(u'google lyrics backend error: %s' % reason)
|
||||
return None
|
||||
return
|
||||
|
||||
if 'items' in data.keys():
|
||||
for item in data['items']:
|
||||
|
|
|
|||
164
test/_lyricstext.py
Normal file
164
test/_lyricstext.py
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: UTF-8 -*-
|
||||
|
||||
"""Lyrics samples for test_lyrics unit tests"""
|
||||
|
||||
texts = dict() # reference lyrics against which are compared fetched lyrics
|
||||
mockcontents = dict() # content of fetched urls
|
||||
|
||||
texts['Lady Madonna'] = \
|
||||
"""Lady Madonna, children at your feet
|
||||
Wonder how you manage to make ends meet
|
||||
Who finds the money? When you pay the rent?
|
||||
Did you think that money was Heaven sent?
|
||||
Friday night arrives without a suitcase
|
||||
Sunday morning creep in like a nun
|
||||
Monday's child has learned to tie his bootlace
|
||||
See how they run
|
||||
|
||||
Lady Madonna, baby at your breast
|
||||
Wonder how you manage to feed the rest
|
||||
|
||||
See how they run
|
||||
|
||||
Lady Madonna, lying on the bed
|
||||
Listen to the music playing in your head
|
||||
|
||||
Tuesday afternoon is never ending
|
||||
Wednesday morning papers didn't come
|
||||
Thursday night you stockings needed mending
|
||||
See how they run
|
||||
|
||||
Lady Madonna, children at your feet
|
||||
Wonder how you manage to make ends meet"""
|
||||
|
||||
texts["Jazz'n'blues"] = \
|
||||
"""It's always gone within two days.
|
||||
Follow my father, his extravagant ways.
|
||||
So if I got it I will spend it all,
|
||||
Camden and Parkway 'til I hit a wall.
|
||||
|
||||
I cross my fingers at the cash machine,
|
||||
As I check my balance I kiss the screen.
|
||||
I love it when it says I got the means,
|
||||
To go to Miss Sixty and pick up my new jeans.
|
||||
|
||||
Chorus: (x2)
|
||||
Never lasts me long,
|
||||
Handle finance wrong,
|
||||
Blow it all on bags and shoes,
|
||||
Jazz 'n blues.
|
||||
|
||||
Standin' too deep at the bar today,
|
||||
Wait with impatience to throw my cash away.
|
||||
Four white Russians a JD and Coke,
|
||||
Buy their drinks all night and now I am broke.
|
||||
But that's cool 'cause I can borrow more from you,
|
||||
And I didn't forget about that fifty pound, too.
|
||||
Tell you what, my advance is comin' through,
|
||||
I'll take you out shoppin',
|
||||
Can you wait 'til next June? Yeah.
|
||||
|
||||
Chorus:
|
||||
Never lasts me long,
|
||||
Handle finance wrong (handle it wrong),
|
||||
Blow it all on bags and shoes,
|
||||
Jazz 'n blues (jazz and blues).
|
||||
Never lasts me long (long),
|
||||
Handle finance wrong (wrong),
|
||||
Blow it all on bags and shoes (blow it all),
|
||||
Jazz 'n blues."""
|
||||
|
||||
texts["I could beat myself"] = \
|
||||
"""oooh ahh, I'm hurting, bad
|
||||
oooh ahh I'm hurting bad!
|
||||
|
||||
I did not see what I was supposed to see
|
||||
taking it easy when a friend told me I was in
|
||||
danger, so much danger.
|
||||
Underestimating my woman, not taking her
|
||||
out, working too hard and now she's gone off
|
||||
with a stranger, someone I don't even know.
|
||||
|
||||
I should have taken her out, every once and a
|
||||
while, taken her to dinner on the finer side, shown
|
||||
her a life that was all worth while, now I guese I gotta
|
||||
walk an extra mile! I could beat myself! Ahh yeah.
|
||||
|
||||
Now I'm gonna feel funny out there in the crowd
|
||||
when my friends all ask me, where is your woman?
|
||||
long time I don't see. Now I've got to think fast gotta
|
||||
use my head, give a good story and make sure they
|
||||
buy my version of the situation.
|
||||
|
||||
All the while I wouldn't lie I'm gonna do this once
|
||||
see my reputation sinking in the distance, if they
|
||||
knew the truth that really existed...then my little sanity
|
||||
would be wasted! I could beat myself ahh yes..I could
|
||||
beat myself!!! Ohh lord lord.
|
||||
|
||||
oooh ooh I'm hurting, hurting inside
|
||||
oooh ooh I'm hurting
|
||||
|
||||
Now I really want to hear a little news now and
|
||||
then, this is not what I expect to hear from my
|
||||
friend I'm dissapointed. He should realize that its
|
||||
gonna destroy my position (remember I'm a name
|
||||
brand) now I've gotta see....I should have held her tight
|
||||
every once and a while, gotten it together on the finer style
|
||||
shown her a life that was all worth while, now it seems I gotta
|
||||
walk an extra mile....I could beat myself..ahh yes, I could beat myself
|
||||
ooh lord
|
||||
|
||||
ooh I'm hurting
|
||||
ooooh I'm hurting,hurting inside
|
||||
|
||||
I don't know what I wanna tell you
|
||||
but I wanna tell you something real, real good yes
|
||||
someting to make you
|
||||
wanna shiver"""
|
||||
|
||||
texts["Hey it's ok"] = \
|
||||
"""Mama, Papa, please forget the times
|
||||
I wet my bed
|
||||
I swear not to do it again
|
||||
Please forgive the way I looked
|
||||
when I was fourteen
|
||||
I didn't know who I wanted to be
|
||||
|
||||
Hey It's OK, It's OK
|
||||
Cause I've found what i wanted
|
||||
Hey It's OK, I'ts Ok
|
||||
Cause I've found what i wanted
|
||||
|
||||
Friends and lovers please forgive
|
||||
the mean things I've said
|
||||
I swear not to do again
|
||||
Please forgive the way I act when
|
||||
I've had too much to drink
|
||||
I'm fighting against myself
|
||||
|
||||
Hey It's OK, It's OK
|
||||
Cause I've found what i wanted
|
||||
Hey It's OK, I'ts Ok
|
||||
|
||||
Cause I've found what i wanted
|
||||
|
||||
And I swear not to do anything funny anymore
|
||||
yes I swear not to do anything funny anymore
|
||||
|
||||
Hey It's OK, It's OK
|
||||
Cause I've found what i wanted
|
||||
Hey It's OK, I'ts Ok
|
||||
Cause I've found what i wanted
|
||||
Hey It's OK, It's OK
|
||||
Cause I've found what i wanted
|
||||
Hey It's OK, I'ts Ok
|
||||
Cause I've found what i wanted"""
|
||||
|
||||
missing_texts = [
|
||||
"""Lyricsmania staff is working hard for you to add $TITLE lyrics as soon
|
||||
as they'll be released by $ARTIST, check back soon!
|
||||
In case you have the lyrics to $TITLE and want to send them to us, fill out
|
||||
the following form."""
|
||||
]
|
||||
176
test/lyrics_sources.py
Normal file
176
test/lyrics_sources.py
Normal file
|
|
@ -0,0 +1,176 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: UTF-8 -*-
|
||||
|
||||
"""Tests for the 'lyrics' plugin"""
|
||||
|
||||
import os
|
||||
import logging
|
||||
from _common import unittest
|
||||
import _lyricstext
|
||||
from beetsplug import lyrics
|
||||
from beets import config
|
||||
from beets.util import confit
|
||||
from bs4 import BeautifulSoup
|
||||
from nose.plugins.attrib import attr
|
||||
|
||||
log = logging.getLogger('beets')
|
||||
|
||||
try:
|
||||
googlekey = config['lyrics']['google_API_key'].get(unicode)
|
||||
except confit.NotFoundError:
|
||||
googlekey = None
|
||||
|
||||
# default query for tests
|
||||
definfo = dict(artist=u'The Beatles', title=u'Lady Madonna')
|
||||
|
||||
|
||||
class MockFetchUrl(object):
|
||||
def __init__(self, pathval='fetched_path'):
|
||||
self.pathval = pathval
|
||||
self.fetched = None
|
||||
|
||||
def __call__(self, url, filename=None):
|
||||
self.fetched = url
|
||||
url = url.replace('http://', '').replace('www.', '')
|
||||
fn = "".join(x for x in url if (x.isalnum() or x == '/'))
|
||||
fn = fn.split('/')
|
||||
fn = os.path.join('rsrc', 'lyrics', fn[0], fn[-1]) + '.txt'
|
||||
with open(fn, 'r') as f:
|
||||
content = f.read()
|
||||
return content
|
||||
|
||||
|
||||
def is_lyrics_content_ok(title, text):
|
||||
"""Compare lyrics text to expected lyrics for given title"""
|
||||
|
||||
setexpected = set(_lyricstext.texts[title].split())
|
||||
settext = set(text.split())
|
||||
setinter = setexpected.intersection(settext)
|
||||
# consider lyrics ok if they share 50% or more with the reference
|
||||
if len(setinter):
|
||||
ratio = 1.0 * max(len(setexpected), len(settext)) / len(setinter)
|
||||
return (ratio > .5 and ratio < 2)
|
||||
return False
|
||||
|
||||
|
||||
class LyricsPluginTest(unittest.TestCase):
|
||||
def setUp(self):
|
||||
"""Set up configuration"""
|
||||
lyrics.LyricsPlugin()
|
||||
|
||||
def test_default_ok(self):
|
||||
"""Test each lyrics engine with the default query"""
|
||||
|
||||
lyrics.fetch_url = MockFetchUrl()
|
||||
|
||||
for f in (lyrics.fetch_lyricswiki, lyrics.fetch_lyricscom):
|
||||
res = f(definfo['artist'], definfo['title'])
|
||||
self.assertTrue(lyrics.is_lyrics(res))
|
||||
self.assertTrue(is_lyrics_content_ok(definfo['title'], res))
|
||||
|
||||
def test_missing_lyrics(self):
|
||||
for msg in _lyricstext.missing_texts:
|
||||
self.assertFalse(lyrics.is_lyrics(msg), msg)
|
||||
|
||||
|
||||
@attr('slow')
|
||||
class LyricsScrapingPluginTest(unittest.TestCase):
|
||||
|
||||
# Every source entered in default beets google custom search engine
|
||||
# must be listed below.
|
||||
# Use default query when possible, or override artist and title field
|
||||
# if website don't have lyrics for default query.
|
||||
sourcesOk = [
|
||||
dict(definfo, url=u'http://www.smartlyrics.com',
|
||||
path=u'/Song18148-The-Beatles-Lady-Madonna-lyrics.aspx'),
|
||||
dict(definfo, url=u'http://www.elyricsworld.com',
|
||||
path=u'/lady_madonna_lyrics_beatles.html'),
|
||||
dict(artist=u'Beres Hammond', title=u'I could beat myself',
|
||||
url=u'http://www.reggaelyrics.info',
|
||||
path=u'/beres-hammond/i-could-beat-myself'),
|
||||
dict(definfo, artist=u'Lilly Wood & the prick', title=u"Hey it's ok",
|
||||
url=u'http://www.lyricsmania.com',
|
||||
path=u'/hey_its_ok_lyrics_lilly_wood_and_the_prick.html'),
|
||||
dict(definfo, artist=u'Lilly Wood & the prick', title=u"Hey it's ok",
|
||||
url=u'http://www.paroles.net/',
|
||||
path=u'lilly-wood-the-prick/paroles-hey-it-s-ok'),
|
||||
dict(definfo, artist=u'Amy Winehouse', title=u"Jazz'n'blues",
|
||||
url=u'http://www.lyricsontop.com',
|
||||
path=u'/amy-winehouse-songs/jazz-n-blues-lyrics.html'),
|
||||
dict(definfo, url=u'http://www.sweetslyrics.com',
|
||||
path=u'/761696.The%20Beatles%20-%20Lady%20Madonna.html'),
|
||||
dict(definfo, url=u'http://www.lyrics007.com',
|
||||
path=u'/The%20Beatles%20Lyrics/Lady%20Madonna%20Lyrics.html'),
|
||||
dict(definfo, url=u'http://www.absolutelyrics.com',
|
||||
path=u'/lyrics/view/the_beatles/lady_madonna'),
|
||||
dict(definfo, url=u'http://www.azlyrics.com/',
|
||||
path=u'/lyrics/beatles/ladymadonna.html'),
|
||||
dict(definfo, url=u'http://www.chartlyrics.com',
|
||||
path=u'/_LsLsZ7P4EK-F-LD4dJgDQ/Lady+Madonna.aspx'),
|
||||
dict(definfo, url='http://www.releaselyrics.com',
|
||||
path=u'/e35f/the-beatles-lady-madonna'),
|
||||
]
|
||||
|
||||
# Websites that can't be scraped yet and whose results must be
|
||||
# flagged as invalid lyrics.
|
||||
sourcesFail = [
|
||||
dict(definfo, url='http://www.songlyrics.com',
|
||||
path=u'/the-beatles/lady-madonna-lyrics'),
|
||||
dict(definfo, url='http://www.metrolyrics.com/',
|
||||
path='best-for-last-lyrics-adele.html')
|
||||
]
|
||||
|
||||
# Websites that return truncated lyrics because of scraping issues, and
|
||||
# thus should not be included as sources to Google CSE.
|
||||
# They are good candidates for later inclusion after improvement
|
||||
# iterations of the scraping algorithm.
|
||||
sourcesIncomplete = [
|
||||
dict(definfo, artist=u'Lilly Wood & the prick', title=u"Hey it's ok",
|
||||
url=u'http://www.lacoccinelle.net',
|
||||
path=u'/paroles-officielles/550512.html'),
|
||||
]
|
||||
|
||||
def test_sources_ok(self):
|
||||
for s in self.sourcesOk:
|
||||
url = s['url'] + s['path']
|
||||
res = lyrics.scrape_lyrics_from_url(url)
|
||||
self.assertTrue(lyrics.is_lyrics(res), url)
|
||||
self.assertTrue(is_lyrics_content_ok(s['title'], res), url)
|
||||
|
||||
def test_sources_fail(self):
|
||||
for s in self.sourcesFail:
|
||||
url = s['url'] + s['path']
|
||||
res = lyrics.scrape_lyrics_from_url(url)
|
||||
# very unlikely these sources pass if the scraping algo is not
|
||||
# tweaked on purpose for these cases
|
||||
self.assertFalse(lyrics.is_lyrics(res), "%s => %s" % (url, res))
|
||||
|
||||
def test_sources_incomplete(self):
|
||||
for s in self.sourcesIncomplete:
|
||||
url = s['url'] + s['path']
|
||||
res = lyrics.scrape_lyrics_from_url(url)
|
||||
|
||||
self.assertTrue(lyrics.is_lyrics(res))
|
||||
# these sources may pass if the html source evolve or after
|
||||
# a random improvement in the scraping algo: we want to
|
||||
# be noticed if it's the case.
|
||||
if is_lyrics_content_ok(s['title'], res):
|
||||
log.debug('Source %s actually return valid lyrics!' % s['url'])
|
||||
|
||||
def test_is_page_candidate(self):
|
||||
for s in self.sourcesOk:
|
||||
url = unicode(s['url'] + s['path'])
|
||||
html = lyrics.fetch_url(url)
|
||||
soup = BeautifulSoup(html)
|
||||
if not soup.title:
|
||||
continue
|
||||
self.assertEqual(lyrics.is_page_candidate(url, soup.title.string,
|
||||
s['title'], s['artist']),
|
||||
True, url)
|
||||
|
||||
|
||||
def suite():
|
||||
return unittest.TestLoader().loadTestsFromName(__name__)
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(defaultTest='suite')
|
||||
414
test/rsrc/lyrics/absolutelyricscom/ladymadonna.txt
Normal file
414
test/rsrc/lyrics/absolutelyricscom/ladymadonna.txt
Normal file
|
|
@ -0,0 +1,414 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>The Beatles :: Lady Madonna Lyrics - Absolute Lyrics</title>
|
||||
|
||||
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="The Beatles, Lady Madonna, lyrics, music lyrics" />
|
||||
<meta name="description" content="" />
|
||||
|
||||
<link rel="shorturl" type="text/html" href="http://www.absolutelyrics.com/l/l81518" />
|
||||
<link rel="shortlink" type="text/html" href="http://www.absolutelyrics.com/l/l81518" />
|
||||
|
||||
|
||||
|
||||
<link href="/static/style2.css" rel="stylesheet" type= "text/css" />
|
||||
|
||||
<script type="text/javascript">
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-115691-1']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
|
||||
</script>
|
||||
|
||||
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
|
||||
|
||||
<script type="text/javascript" src="/static/js2.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="headerweb">
|
||||
<div id="header">
|
||||
<h1><a href="/">absolute lyrics</a></h1>
|
||||
|
||||
<div id="quicksearchbox">
|
||||
<form method="get" action="/lyrics/search">search
|
||||
<input type="text" name="q" id="q" value="" size="20" />
|
||||
<input type="submit" name="search" id="search" value="go" />
|
||||
</form>
|
||||
</div><!-- quicksearchbox -->
|
||||
|
||||
<div id="mainmenu">
|
||||
<ul>
|
||||
<li><a href="/" title="home">home</a></li>
|
||||
<li><a href="/lyrics/top50" title="top 50 lyrics" rel="nofollow">top 50 lyrics</a></li>
|
||||
<li><a href="/lyrics/top50a" title="top 50 artists" rel="nofollow">top 50 artists</a></li>
|
||||
<li><a href="/lyrics/searchpage" title="advance search" rel="nofollow">search</a></li>
|
||||
<li><a href="/lyrics/privacy" rel="nofollow">privacy</a></li>
|
||||
</ul>
|
||||
</div><!-- mainmenu -->
|
||||
|
||||
<div id="alphalistcontainer">
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div><!-- header -->
|
||||
</div><!-- headerweb -->
|
||||
|
||||
<div id="topbanner">
|
||||
<script type="text/javascript">
|
||||
// <![CDATA[
|
||||
// Absolutelyrics 728x90 Brand Ads Only
|
||||
cf_page_artist = "The Beatles";
|
||||
cf_page_song = "Lady Madonna";
|
||||
cf_adunit_id = "39380976";
|
||||
// ]]>
|
||||
</script>
|
||||
<script type="text/javascript" src="http://srv.clickfuse.com/showads/showad.php"></script> </div><!-- topbanner -->
|
||||
|
||||
|
||||
<div id="webpage">
|
||||
<div id="content">
|
||||
<div id="nav">
|
||||
you are at : <a href="/" title="absolute lyrics home">home</a> > <a href="/lyrics/artist/the_beatles" title="The Beatles lyrics">The Beatles Lyrics</a> > Lady Madonna Lyrics </div><!-- nav -->
|
||||
|
||||
<div id="left">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- <div id="advertising_kovideo" style="font-size: 13px; text-align: right;"> -->
|
||||
<!-- </div> -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Lady Madonna - The Beatles
|
||||
<script language=JavaScript>
|
||||
// buy mp3
|
||||
document.write(Base64.decode('CTxzcGFuIGNsYXNzPSJidXlfbXAzIj48YSB0YXJnZXQ9Il9ibGFuayIgaHJlZj0iaHR0cDovL3d3dy5hbWF6b24uY29tL3MvP19lbmNvZGluZz1VVEY4JnJlZGlyZWN0PXRydWUmdGFnPWFic29sdXRlbHlyaWNzLTIwJmxpbmtDb2RlPXVyMiZjYW1wPTE3ODkmcmQ9MSZjcmVhdGl2ZT0zOTA5NTcmZmllbGQta2V5d29yZHM9JTI2JTIzMzQlM0JUaGUlMjBCZWF0bGVzJTI2JTIzMzQlM0IlMjAlMjYlMjMzNCUzQkxhZHklMjBNYWRvbm5hJTI2JTIzMzQlM0ImdXJsPXNlYXJjaC1hbGlhcyUzRGRpZ2l0YWwtbXVzaWMiICByZWw9Im5vZm9sbG93Ij5CdXkgTVAzPC9hPjxpbWcgc3JjPSJodHRwczovL3d3dy5hc3NvYy1hbWF6b24uY29tL2UvaXI/dD1hYnNvbHV0ZWx5cmljcy0yMCZsPXVyMiZvPTEiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGJvcmRlcj0iMCIgYWx0PSIiIHN0eWxlPSJib3JkZXI6bm9uZSAhaW1wb3J0YW50OyBtYXJnaW46MHB4ICFpbXBvcnRhbnQ7IiAvPjwvc3Bhbj4KCgk='));
|
||||
</script>
|
||||
</h2>
|
||||
|
||||
|
||||
<script language=JavaScript>
|
||||
// like button
|
||||
document.write(Base64.decode('Cgk8ZGl2IHN0eWxlPSJtYXJnaW4tdG9wOiAxMHB4OyBtYXJnaW4tYm90dG9tOiAxMHB4OyI+Cgk8ZGl2IGlkPSJmYiIgc3R5bGU9ImRpc3BsYXk6aW5saW5lLWJsb2NrOyB2ZXJ0aWNhbC1hbGlnbjp0ZXh0LXRvcDsgcGFkZGluZy1ib3R0b206MnB4OyI+CgkJPGRpdiBpZD0iZmItcm9vdCI+PC9kaXY+CgkJPGRpdiBjbGFzcz0iZmItbGlrZSIgZGF0YS1ocmVmPSJodHRwOi8vd3d3LmFic29sdXRlbHlyaWNzLmNvbS9sL2w4MTUxOCIgZGF0YS1zZW5kPSJmYWxzZSIgZGF0YS1sYXlvdXQ9ImJ1dHRvbl9jb3VudCIgZGF0YS1zaG93LWZhY2VzPSJmYWxzZSI+PC9kaXY+Cgk8L2Rpdj4KCgk8ZGl2IGlkPSJnZyIgc3R5bGU9ImRpc3BsYXk6aW5saW5lLWJsb2NrOyB2ZXJ0aWNhbC1hbGlnbjp0ZXh0LXRvcDsgaGVpZ2h0OjIwcHg7IHdpZHRoOiA3NXB4OyBvdmVyZmxvdzogaGlkZGVuO3BhZGRpbmctYm90dG9tOjJweDsiPgoJPCEtLSBQbGFjZSB0aGlzIHRhZyB3aGVyZSB5b3Ugd2FudCB0aGUgKzEgYnV0dG9uIHRvIHJlbmRlciAtLT4KCQk8ZGl2IGNsYXNzPSJnLXBsdXNvbmUiIGRhdGEtc2l6ZT0ibWVkaXVtIiBkYXRhLWhyZWY9Imh0dHA6Ly93d3cuYWJzb2x1dGVseXJpY3MuY29tL2wvbDgxNTE4Ij48L2Rpdj4KCgk8L2Rpdj4KCTxkaXYgaWQ9InR3IiBzdHlsZT0iZGlzcGxheTppbmxpbmUtYmxvY2s7IHZlcnRpY2FsLWFsaWduOnRleHQtdG9wOyBoZWlnaHQ6MjBweDsgd2lkdGg6MTAwcHg7IG92ZXJmbG93OiBoaWRkZW47cGFkZGluZy1ib3R0b206MnB4OyI+CgkJPGEgaHJlZj0iaHR0cHM6Ly90d2l0dGVyLmNvbS9zaGFyZSIgY2xhc3M9InR3aXR0ZXItc2hhcmUtYnV0dG9uIiBkYXRhLXVybD0iaHR0cDovL3d3dy5hYnNvbHV0ZWx5cmljcy5jb20vbC9sODE1MTgiIGRhdGEtdGV4dD0iTGFkeSBNYWRvbm5hIGJ5IFRoZSBCZWF0bGVzIGx5cmljcyIgZGF0YS1jb3VudD0iaG9yaXpvbnRhbCIgcmVsPSJub2ZvbGxvdyI+VHdlZXQ8L2E+Cgk8L2Rpdj4KPC9kaXY+CgoJ'));
|
||||
</script>
|
||||
<!-- Poisemedia -->
|
||||
<script language=JavaScript>
|
||||
document.write(Base64.decode('PGRpdiBpZD0iYWR2ZXJ0aXNpbmdfcG9pc2VtZWRpYSI+Cgk8cCBzdHlsZT0iY29sb3I6cmVkOyBmb250LXdlaWdodDpib2xkOyBmb250LXNpemU6MTRweDsgZm9udC1mYW1pbHk6IGFyaWFsOyB0ZXh0LWFsaWduOmxlZnQ7Ij4KCTxhIGhyZWY9Imh0dHA6Ly93d3cucmluZ3RvbmVtYXRjaGVyLmNvbS9jby9yaW5ndG9uZW1hdGNoZXIvMDIvbm9jLmFzcD9zaWQ9QUJURXJvcyZhbXA7YXJ0aXN0PVRoZSUyMEJlYXRsZXMmYW1wO3Nvbmc9TGFkeSUyME1hZG9ubmEiIHRhcmdldD0iX2JsYW5rIiBzdHlsZT0iY29sb3I6cmVkOyIgcmVsPSJub2ZvbGxvdyI+Cgk8aW1nIHNyYz0iL3N0YXRpYy9waG9uZV9pY29uX2JsdWVfc21hbGxfdHJhbnNfbGVmdC5naWYiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNyIgYm9yZGVyPSIwIiBzdHlsZT0idmVydGljYWwtYWxpZ246bWlkZGxlIiBhbHQ9IioiIC8+CglTZW5kICJMYWR5IE1hZG9ubmEiIFJpbmd0b25lIHRvIHlvdXIgQ2VsbAoJPGltZyBzcmM9Ii9zdGF0aWMvcGhvbmVfaWNvbl9ibHVlX3NtYWxsX3RyYW5zX3JpZ2h0LmdpZiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE3IiBib3JkZXI9IjAiIHN0eWxlPSJ2ZXJ0aWNhbC1hbGlnbjptaWRkbGUiIGFsdD0iKiIgLz48L2E+PC9wPgoJPC9kaXY+'));
|
||||
</script>
|
||||
<!-- end poisemedia -->
|
||||
|
||||
<p id="view_lyrics">
|
||||
The Beatles - Lady Madonna<br />
|
||||
<br />
|
||||
Lady Madonna, children at your feet.<br />
|
||||
Wonder how you manage to make ends meet.<br />
|
||||
Who finds the money? When you pay the rent?<br />
|
||||
Did you think that money was heaven sent?<br />
|
||||
Friday night arrives without a suitcase.<br />
|
||||
Sunday morning creep in like a nun.<br />
|
||||
Monday's child has learned to tie his bootlace.<br />
|
||||
See how they run.<br />
|
||||
Lady Madonna, baby at your breast.<br />
|
||||
Wonder how you manage to feed the rest.<br />
|
||||
See how they run.<br />
|
||||
Lady Madonna, lying on the bed,<br />
|
||||
Listen to the music playing in your head.<br />
|
||||
Tuesday afternoon is never ending.<br />
|
||||
Wednesday morning papers didn't come.<br />
|
||||
Thursday night you stockings needed mending.<br />
|
||||
See how they run.<br />
|
||||
Lady Madonna, children at your feet.<br />
|
||||
Wonder how you manage to make ends meet. </p>
|
||||
|
||||
<!-- Poisemedia -->
|
||||
<script language=JavaScript>
|
||||
document.write(Base64.decode('PGRpdiBpZD0iYWR2ZXJ0aXNpbmdfcG9pc2VtZWRpYTIiPgoJPHAgc3R5bGU9ImNvbG9yOnJlZDsgZm9udC13ZWlnaHQ6Ym9sZDsgZm9udC1zaXplOjE0cHg7IGZvbnQtZmFtaWx5OiBhcmlhbDsgdGV4dC1hbGlnbjpsZWZ0OyI+Cgk8YSBocmVmPSJodHRwOi8vd3d3LnJpbmd0b25lbWF0Y2hlci5jb20vY28vcmluZ3RvbmVtYXRjaGVyLzAyL25vYy5hc3A/c2lkPUFCVEVyb3MmYW1wO2FydGlzdD1UaGUlMjBCZWF0bGVzJmFtcDtzb25nPUxhZHklMjBNYWRvbm5hIiB0YXJnZXQ9Il9ibGFuayIgc3R5bGU9ImNvbG9yOnJlZDsiIHJlbD0ibm9mb2xsb3ciPgoJPGltZyBzcmM9Ii9zdGF0aWMvcGhvbmVfaWNvbl9ibHVlX3NtYWxsX3RyYW5zX2xlZnQuZ2lmIiB3aWR0aD0iMTYiIGhlaWdodD0iMTciIGJvcmRlcj0iMCIgc3R5bGU9InZlcnRpY2FsLWFsaWduOm1pZGRsZSIgYWx0PSIqIiAvPgoJU2VuZCAiTGFkeSBNYWRvbm5hIiBSaW5ndG9uZSB0byB5b3VyIENlbGwKCTxpbWcgc3JjPSIvc3RhdGljL3Bob25lX2ljb25fYmx1ZV9zbWFsbF90cmFuc19yaWdodC5naWYiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNyIgYm9yZGVyPSIwIiBzdHlsZT0idmVydGljYWwtYWxpZ246bWlkZGxlIiBhbHQ9IioiIC8+PC9hPjwvcD4KCTwvZGl2Pg=='));
|
||||
</script>
|
||||
<!-- end poisemedia -->
|
||||
|
||||
<div id="view_lyricsinfo">
|
||||
view 9,699 times, correct by Diesel </div>
|
||||
|
||||
<div style="text-align: center; padding:10px;">
|
||||
<script type="text/javascript" >
|
||||
// <![CDATA[
|
||||
google_ad_client = "pub-4230952243334764";
|
||||
google_ad_width = 300;
|
||||
google_ad_height = 250;
|
||||
google_ad_format = "300x250_as";
|
||||
google_ad_channel ="0091933132";
|
||||
//google_page_url = document.location;
|
||||
google_color_border = "FFFFFF";
|
||||
google_color_bg = "FFFFFF";
|
||||
google_color_link = "0000FF";
|
||||
google_color_url = "0000FF";
|
||||
google_color_text = "000000";
|
||||
// ]]>
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script> </div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- comment -->
|
||||
<div style="padding-top: 20px;">
|
||||
<h2>comments</h2>
|
||||
|
||||
<div class="fb-comments" data-href="http://www.absolutelyrics.com/l/l81518" data-num-posts="5" data-width="550" style="padding-left: 10px;"></div>
|
||||
</div>
|
||||
</div> <!-- left -->
|
||||
|
||||
<div id="right">
|
||||
<div id="boxbanner">
|
||||
<script type="text/javascript">
|
||||
// <![CDATA[
|
||||
/* Artist-Album-List-300x250 */
|
||||
cf_page_artist = "The Beatles";
|
||||
cf_page_song = "Lady Madonna";
|
||||
cf_adunit_id = "39380943";
|
||||
// ]]>
|
||||
</script>
|
||||
<script type="text/javascript" src="http://srv.clickfuse.com/showads/showad.php"></script>
|
||||
</div><!-- boxbanner -->
|
||||
|
||||
<div class="box" id="relatedvideocontainer">
|
||||
<h3>related videos</h3>
|
||||
<div id="relatedvideos">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="box">
|
||||
<h3>share this page</h3>
|
||||
|
||||
<label for="copyurl" style="cursor: pointer;">link </label>
|
||||
<input id="copyurl" value="http://www.absolutelyrics.com/l/l81518" style="border: 1px solid rgb(208, 208, 208); cursor: pointer; width: 250px;" onclick="this.select();this.focus();" onfocus="this.select();this.focus();" /><br />
|
||||
|
||||
<div style="padding-top: 3px;">
|
||||
|
||||
<a href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.absolutelyrics.com%2Fl%2Fl81518&t=Lady%20Madonna%20by%20The%20Beatles%20lyrics" target="_blank" title="Share on Facebook" rel="nofollow">
|
||||
<img src="/static/share-facebook.png" alt="Facebook" border="0" /></a>
|
||||
|
||||
<a href="http://twitter.com/home/?status=Lady%20Madonna%20by%20The%20Beatles%20lyrics%20http%3A%2F%2Fwww.absolutelyrics.com%2Fl%2Fl81518" target="_blank" title="Share on Twitter" rel="nofollow">
|
||||
<img src="/static/share-twitter.png" alt="Twitter" border="0" /></a>
|
||||
|
||||
<a href="http://www.myspace.com/index.cfm?fuseaction=postto&t=Lady%20Madonna%20by%20The%20Beatles%20lyrics&c=http%3A%2F%2Fwww.absolutelyrics.com%2Fl%2Fl81518&u=http%3A%2F%2Fwww.absolutelyrics.com%2Fl%2Fl81518" target="_blank" title="Share on MySpace" rel="nofollow">
|
||||
<img src="/static/share-myspace.png" alt="MySpace" border="0" /></a>
|
||||
|
||||
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.absolutelyrics.com%2Fl%2Fl81518&title=Lady%20Madonna%20by%20The%20Beatles%20lyrics" target="_blank" title="Bookmark on Delicious" rel="nofollow">
|
||||
<img src="/static/share-delicious.png" alt="Delicious" border="0" /></a>
|
||||
|
||||
<a href="http://www.bebo.com/c/share?Url=http%3A%2F%2Fwww.absolutelyrics.com%2Fl%2Fl81518&Title=Lady%20Madonna%20by%20The%20Beatles%20lyrics" target="_blank" title="Post on Bebo" rel="nofollow">
|
||||
<img src="/static/share-bebo.png" alt="Bebo" border="0" /></a>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="box">
|
||||
<h3>related artists</h3>
|
||||
<div class="artistlist">
|
||||
<ul>
|
||||
<li><a href="/lyrics/artist/john_lennon" title="John Lennon lyrics">John Lennon</a></li>
|
||||
<li><a href="/lyrics/artist/bee_gees" title="Bee Gees lyrics">Bee Gees</a></li>
|
||||
<li><a href="/lyrics/artist/elvis_presley" title="Elvis Presley lyrics">Elvis Presley</a></li>
|
||||
<li><a href="/lyrics/artist/the_rolling_stones" title="The Rolling Stones lyrics">The Rolling Stones</a></li>
|
||||
<li><a href="/lyrics/artist/elton_john" title="Elton John lyrics">Elton John</a></li>
|
||||
<li><a href="/lyrics/artist/queen" title="Queen lyrics">Queen</a></li>
|
||||
<li><a href="/lyrics/artist/the_carpenters" title="The Carpenters lyrics">The Carpenters</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="box">
|
||||
<h3>popular The Beatles's lyrics</h3>
|
||||
<div class="songlist">
|
||||
<ul>
|
||||
<li><a href="/lyrics/view/the_beatles/yesterday" title="Yesterday lyrics">Yesterday</a></li>
|
||||
<li><a href="/lyrics/view/the_beatles/let_it_be" title="Let It Be lyrics">Let It Be</a></li>
|
||||
<li><a href="/lyrics/view/the_beatles/all_my_loving" title="All My Loving lyrics">All My Loving</a></li>
|
||||
<li><a href="/lyrics/view/the_beatles/hey_jude" title="Hey Jude lyrics">Hey Jude</a></li>
|
||||
<li><a href="/lyrics/view/the_beatles/in_my_life" title="In My Life lyrics">In My Life</a></li>
|
||||
<li><a href="/lyrics/view/the_beatles/strawberry_fields_forever" title="Strawberry Fields Forever lyrics">Strawberry Fields Forever</a></li>
|
||||
<li><a href="/lyrics/view/the_beatles/yellow_submarine" title="Yellow Submarine lyrics">Yellow Submarine</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
</div><!-- right -->
|
||||
|
||||
<div id="footer">
|
||||
|
||||
<div id="alphalist">
|
||||
<div id="alphalistartists">
|
||||
artists -
|
||||
<ul>
|
||||
<li><a href="/lyrics/artistlist/9">0-9</a></li>
|
||||
<li><a href="/lyrics/artistlist/a">a</a></li>
|
||||
<li><a href="/lyrics/artistlist/b">b</a></li>
|
||||
<li><a href="/lyrics/artistlist/c">c</a></li>
|
||||
<li><a href="/lyrics/artistlist/d">d</a></li>
|
||||
<li><a href="/lyrics/artistlist/e">e</a></li>
|
||||
<li><a href="/lyrics/artistlist/f">f</a></li>
|
||||
<li><a href="/lyrics/artistlist/g">g</a></li>
|
||||
<li><a href="/lyrics/artistlist/h">h</a></li>
|
||||
<li><a href="/lyrics/artistlist/i">i</a></li>
|
||||
<li><a href="/lyrics/artistlist/j">j</a></li>
|
||||
<li><a href="/lyrics/artistlist/k">k</a></li>
|
||||
<li><a href="/lyrics/artistlist/l">l</a></li>
|
||||
<li><a href="/lyrics/artistlist/m">m</a></li>
|
||||
<li><a href="/lyrics/artistlist/n">n</a></li>
|
||||
<li><a href="/lyrics/artistlist/o">o</a></li>
|
||||
<li><a href="/lyrics/artistlist/p">p</a></li>
|
||||
<li><a href="/lyrics/artistlist/q">q</a></li>
|
||||
<li><a href="/lyrics/artistlist/r">r</a></li>
|
||||
<li><a href="/lyrics/artistlist/s">s</a></li>
|
||||
<li><a href="/lyrics/artistlist/t">t</a></li>
|
||||
<li><a href="/lyrics/artistlist/u">u</a></li>
|
||||
<li><a href="/lyrics/artistlist/v">v</a></li>
|
||||
<li><a href="/lyrics/artistlist/w">w</a></li>
|
||||
<li><a href="/lyrics/artistlist/x">x</a></li>
|
||||
<li><a href="/lyrics/artistlist/y">y</a></li>
|
||||
<li><a href="/lyrics/artistlist/z">z</a></li>
|
||||
</ul>
|
||||
</div><!-- alphalistartists -->
|
||||
<div id="alphalistsongs">
|
||||
songs -
|
||||
<ul>
|
||||
<li><a href="/lyrics/songlist/9" rel="nofollow">0-9</a></li>
|
||||
<li><a href="/lyrics/songlist/a" rel="nofollow">a</a></li>
|
||||
<li><a href="/lyrics/songlist/b" rel="nofollow">b</a></li>
|
||||
<li><a href="/lyrics/songlist/c" rel="nofollow">c</a></li>
|
||||
<li><a href="/lyrics/songlist/d" rel="nofollow">d</a></li>
|
||||
<li><a href="/lyrics/songlist/e" rel="nofollow">e</a></li>
|
||||
<li><a href="/lyrics/songlist/f" rel="nofollow">f</a></li>
|
||||
<li><a href="/lyrics/songlist/g" rel="nofollow">g</a></li>
|
||||
<li><a href="/lyrics/songlist/h" rel="nofollow">h</a></li>
|
||||
<li><a href="/lyrics/songlist/i" rel="nofollow">i</a></li>
|
||||
<li><a href="/lyrics/songlist/j" rel="nofollow">j</a></li>
|
||||
<li><a href="/lyrics/songlist/k" rel="nofollow">k</a></li>
|
||||
<li><a href="/lyrics/songlist/l" rel="nofollow">l</a></li>
|
||||
<li><a href="/lyrics/songlist/m" rel="nofollow">m</a></li>
|
||||
<li><a href="/lyrics/songlist/n" rel="nofollow">n</a></li>
|
||||
<li><a href="/lyrics/songlist/o" rel="nofollow">o</a></li>
|
||||
<li><a href="/lyrics/songlist/p" rel="nofollow">p</a></li>
|
||||
<li><a href="/lyrics/songlist/q" rel="nofollow">q</a></li>
|
||||
<li><a href="/lyrics/songlist/r" rel="nofollow">r</a></li>
|
||||
<li><a href="/lyrics/songlist/s" rel="nofollow">s</a></li>
|
||||
<li><a href="/lyrics/songlist/t" rel="nofollow">t</a></li>
|
||||
<li><a href="/lyrics/songlist/u" rel="nofollow">u</a></li>
|
||||
<li><a href="/lyrics/songlist/v" rel="nofollow">v</a></li>
|
||||
<li><a href="/lyrics/songlist/w" rel="nofollow">w</a></li>
|
||||
<li><a href="/lyrics/songlist/x" rel="nofollow">x</a></li>
|
||||
<li><a href="/lyrics/songlist/y" rel="nofollow">y</a></li>
|
||||
<li><a href="/lyrics/songlist/z" rel="nofollow">z</a></li>
|
||||
</ul>
|
||||
</div><!-- alphalistsongs -->
|
||||
</div><!-- alphalist -->
|
||||
|
||||
all lyrics are the property and copyright of their owners, provided for educational purposes only.<br />
|
||||
© absolutelyrics.com.<br /><br /><br /><br />
|
||||
</div><!-- footer -->
|
||||
|
||||
</div><!-- webpage -->
|
||||
|
||||
<!-- Move alphalist to top -->
|
||||
<script type='text/javascript'>
|
||||
a = document.getElementById('alphalist');
|
||||
c = document.getElementById('alphalistcontainer');
|
||||
c.appendChild(a);
|
||||
|
||||
// show content
|
||||
//d = document.getElementById('webpage');
|
||||
//d.style.display = '';
|
||||
</script>
|
||||
|
||||
<!-- show related video -->
|
||||
<script type="text/javascript" src="http://gdata.youtube.com/feeds/api/videos/-/music?orderby=relevance&max-results=3&format=5&restriction=82.244.48.203&q="Lady Madonna" official mv "The Beatles"&alt=json-in-script&callback=vdoupdate"></script>
|
||||
|
||||
|
||||
<script>
|
||||
/* Flex */
|
||||
cf_page_artist = "The Beatles";
|
||||
cf_page_song = "Lady Madonna";
|
||||
cf_page_genre = "";
|
||||
cf_adunit_id = "39381071";
|
||||
cf_flex = true;
|
||||
</script>
|
||||
<script src="//srv.clickfuse.com/showads/showad.php"></script>
|
||||
|
||||
<!-- facebook, twitter, plusone -->
|
||||
<script>(function(d, s, id) {
|
||||
var js, fjs = d.getElementsByTagName(s)[0];
|
||||
if (d.getElementById(id)) {return;}
|
||||
js = d.createElement(s); js.id = id;
|
||||
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
|
||||
js.async = true;
|
||||
fjs.parentNode.insertBefore(js, fjs);
|
||||
}(document, 'script', 'facebook-jssdk'));</script>
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
window.___gcfg = {lang: 'en'};
|
||||
|
||||
(function() {
|
||||
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
|
||||
po.src = 'https://apis.google.com/js/plusone.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
|
||||
})();
|
||||
</script>
|
||||
<script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
|
||||
|
||||
|
||||
<!-- Kontera(TM);-->
|
||||
<script type='text/javascript'>
|
||||
var dc_AdLinkColor = '#ee1c24' ;
|
||||
var dc_PublisherID = 83635 ;
|
||||
|
||||
</script>
|
||||
<script type='text/javascript' src='http://kona.kontera.com/javascript/lib/KonaLibInline.js'>
|
||||
</script>
|
||||
<!-- end Kontera(TM) -->
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
191
test/rsrc/lyrics/azlyricscom/ladymadonnahtml.txt
Normal file
191
test/rsrc/lyrics/azlyricscom/ladymadonnahtml.txt
Normal file
|
|
@ -0,0 +1,191 @@
|
|||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<title>THE BEATLES LYRICS - Lady Madonna</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="description" content="Lyrics to "Lady Madonna" song by THE BEATLES: Lady Madonna, children at your feet Wonder how you manage to make ends meet Who finds the money? Whe..." />
|
||||
<meta name="keywords" content="Lady Madonna lyrics, THE BEATLES Lady Madonna lyrics, THE BEATLES lyrics" />
|
||||
<meta name="robots" content="noarchive" />
|
||||
<link rel="stylesheet" type="text/css" href="../../azl.css" />
|
||||
<script type="text/javascript" src="http://www.azlyrics.com/external.js"></script>
|
||||
<script type="text/javascript" src="http://images.azlyrics.com/head.js"></script>
|
||||
<script type="text/javascript" language="JavaScript">
|
||||
ArtistName = "THE BEATLES";
|
||||
SongName = "Lady Madonna";
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="h1head"><h1>"Lady Madonna" lyrics</h1></div>
|
||||
|
||||
<div id="main">
|
||||
<script type="text/javascript" src="http://images.azlyrics.com/top_rock.js"></script>
|
||||
|
||||
<!-- flex -->
|
||||
<script>
|
||||
cf_page_artist = ArtistName;
|
||||
cf_page_song = SongName;
|
||||
cf_page_genre = "";
|
||||
cf_adunit_id = "39381789";
|
||||
cf_flex = true;
|
||||
</script>
|
||||
<script src="http://srv.clickfuse.com/showads/showad.php"></script>
|
||||
<!-- flex end -->
|
||||
|
||||
<!-- AddThis Button BEGIN -->
|
||||
<iframe src="http://www.facebook.com/plugins/like.php?href=http://www.azlyrics.com/lyrics/beatles/ladymadonna.html&layout=button_count&show_faces=false&width=140&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="float:left; border:none; overflow:hidden; width:140px; height:21px;" allowTransparency="true"></iframe>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
var addthis_config = {
|
||||
services_custom: {
|
||||
name: "Amazon",
|
||||
url: "http://www.amazon.com/gp/search?ie=UTF8&keywords=THE+BEATLES%20Lady+Madonna&tag=azlyricsunive-20&index=digital-music&linkCode=ur2&camp=1789&creative=9325",
|
||||
icon: "http://images.azlyrics.com/play.gif"}
|
||||
}
|
||||
// -->
|
||||
</script>
|
||||
<div class="addthis_toolbox addthis_default_style" style="float:right;">
|
||||
<a class="addthis_button_www.amazon.com" title="Get MP3!" style="text-decoration:none; color: black;">MP3 </a>
|
||||
<a class="addthis_button_email">Email </a>
|
||||
<a class="addthis_button_print">Print</a>
|
||||
</div>
|
||||
<script type="text/javascript" src="http://s7.addthis.com/js/300/addthis_widget.js#username=azlyrics"></script>
|
||||
|
||||
<!-- AddThis Button END -->
|
||||
|
||||
<!-- JANGO PLAYER -->
|
||||
<div style="clear:both;">
|
||||
<iframe width="325" scrolling="no" height="38" frameborder="0" vspace="0" hspace="0" allowTransparency="true" marginwidth="0" marginheight="0" style="border: 0px none; padding:5px 0 30px;" src="http://jmn.jangonetwork.com/az?cust_params=j_artist=THE BEATLES&j_title=Lady Madonna"></iframe><br />
|
||||
</div>
|
||||
<!-- END OF JANGO PLAYER -->
|
||||
|
||||
<h2>THE BEATLES LYRICS</h2>
|
||||
|
||||
<div class="ringtone">
|
||||
<img src="http://images.azlyrics.com/phone.gif" width="16" height="17" alt="Lady Madonna Ringtone" /> <a href="http://www.ringtonematcher.com/co/ringtonematcher/02/noc.asp?sid=DVAZros&artist=THE+BEATLES&song=Lady+Madonna" class="Ringtones">Send "Lady Madonna" Ringtone to your Cell</a> <img src="http://images.azlyrics.com/phone_flip.gif" width="16" height="17" alt="Lady Madonna Ringtone" />
|
||||
</div>
|
||||
|
||||
<b>"Lady Madonna"</b><br />
|
||||
|
||||
<br />
|
||||
|
||||
<div style="margin-left:10px;margin-right:10px;">
|
||||
<!-- start of lyrics -->
|
||||
Lady Madonna, children at your feet<br />
|
||||
Wonder how you manage to make ends meet<br />
|
||||
Who finds the money? When you pay the rent?<br />
|
||||
Did you think that money was Heaven sent?<br />
|
||||
Friday night arrives without a suitcase<br />
|
||||
Sunday morning creep in like a nun<br />
|
||||
Monday's child has learned to tie his bootlace<br />
|
||||
See how they run<br />
|
||||
<br />
|
||||
Lady Madonna, baby at your breast<br />
|
||||
Wonder how you manage to feed the rest<br />
|
||||
<br />
|
||||
See how they run<br />
|
||||
<br />
|
||||
Lady Madonna, lying on the bed<br />
|
||||
Listen to the music playing in your head<br />
|
||||
<br />
|
||||
Tuesday afternoon is never ending<br />
|
||||
Wednesday morning papers didn't come<br />
|
||||
Thursday night you stockings needed mending<br />
|
||||
See how they run<br />
|
||||
<br />
|
||||
Lady Madonna, children at your feet<br />
|
||||
Wonder how you manage to make ends meet
|
||||
<!-- end of lyrics -->
|
||||
</div>
|
||||
|
||||
<br /><br /><br /><br />
|
||||
|
||||
|
||||
|
||||
|
||||
<form action="../../add.php" method="post" id="corlyr">
|
||||
<input type="hidden" name="what" value="correct_lyrics" />
|
||||
<input type="hidden" name="song_id" value="115988" />
|
||||
</form>
|
||||
|
||||
<br />
|
||||
<div class="bmenu"><ul>
|
||||
|
||||
<li><a href="#" onclick="document.getElementById('corlyr').submit();return false;">Submit Corrections</a></li>
|
||||
<li><a href="http://www.azlyrics.com/b/beatles.html">THE BEATLES Lyrics</a></li>
|
||||
<li class="mlast"><a class="main" href="http://www.azlyrics.com">A-Z Lyrics</a></li>
|
||||
</ul></div>
|
||||
|
||||
<div class="ringtone">
|
||||
<img src="http://images.azlyrics.com/phone.gif" width="16" height="17" alt="Lady Madonna Ringtone" /> <a href="http://www.ringtonematcher.com/co/ringtonematcher/02/noc.asp?sid=DVAZros&artist=THE+BEATLES&song=Lady+Madonna" class="Ringtones">Send "Lady Madonna" Ringtone to your Cell</a> <img src="http://images.azlyrics.com/phone_flip.gif" width="16" height="17" alt="Lady Madonna Ringtone" />
|
||||
</div>
|
||||
|
||||
<div class="smallfont">Writer(s): George Harrison, John Lennon, Paul Mccartney<br />
|
||||
Copyright: Harrisongs Ltd., Sony/ATV Tunes LLC</div>
|
||||
<br />
|
||||
|
||||
<div class="powered"><span style="font-weight:bold;line-height:54px;vertical-align:top;">Powered by </span><img src="http://images.azlyrics.com/mxm.png" width="184" height="54" alt="MusixMatch" /></div>
|
||||
|
||||
|
||||
<!-- AddThis Button BEGIN -->
|
||||
<iframe src="http://www.facebook.com/plugins/like.php?href=http://www.azlyrics.com/lyrics/beatles/ladymadonna.html&layout=button_count&show_faces=false&width=140&action=like&font=verdana&colorscheme=light&height=21" scrolling="no" frameborder="0" style="float:left; border:none; overflow:hidden; width:140px; height:21px;" allowTransparency="true"></iframe>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
var addthis_config = {
|
||||
services_custom: {
|
||||
name: "Amazon",
|
||||
url: "http://www.amazon.com/gp/search?ie=UTF8&keywords=THE+BEATLES%20Lady+Madonna&tag=azlyricsunive-20&index=digital-music&linkCode=ur2&camp=1789&creative=9325",
|
||||
icon: "http://images.azlyrics.com/play.gif"}
|
||||
}
|
||||
// -->
|
||||
|
||||
</script>
|
||||
<div class="addthis_toolbox addthis_default_style" style="float:right;">
|
||||
<a class="addthis_button_www.amazon.com" title="Get MP3!" style="text-decoration:none; color: black;">MP3 </a>
|
||||
<a class="addthis_button_email">Email </a>
|
||||
<a class="addthis_button_print">Print</a>
|
||||
</div>
|
||||
<script type="text/javascript" src="http://s7.addthis.com/js/300/addthis_widget.js#username=azlyrics"></script>
|
||||
<!-- AddThis Button END -->
|
||||
<div class="cb"></div>
|
||||
|
||||
<form class="search" method="get" action="http://search.azlyrics.com/search.php">
|
||||
|
||||
Enter artist/album/song to search lyrics for:<div class="search_wr"><input id="q" name="q" class="search_text" type="text" value="" /><button class="search_btn" type="submit"></button><div id="qas"></div></div>
|
||||
</form>
|
||||
|
||||
<script type="text/javascript" src="http://images.azlyrics.com/bot_rock.js"></script>
|
||||
|
||||
<div class="smenu"><ul>
|
||||
<li><a href="http://www.azlyrics.com/adv.html">Advertise Here</a></li>
|
||||
<li><a href="http://www.azlyrics.com/privacy.html">Privacy Policy</a></li>
|
||||
<li><a href="http://www.azlyrics.com/copyright.html">DMCA Policy</a></li>
|
||||
<li class="mlast"><a href="http://www.azlyrics.com/contact.html">Contact Us</a></li>
|
||||
</ul></div>
|
||||
<div class="copyright">THE BEATLES lyrics are property and copyright of their owners.<br />"Lady Madonna" lyrics provided for educational purposes and personal use only.<br />
|
||||
|
||||
<script type="text/javascript"><!--
|
||||
curdate=new Date();
|
||||
document.write("<b>Copyright © 2000-"+curdate.getFullYear()+" AZLyrics.com<\/b>"); // -->
|
||||
</script>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
||||
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
// -->
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
try {
|
||||
var pageTracker = _gat._getTracker("UA-4309237-1");
|
||||
pageTracker._setDomainName(".azlyrics.com");
|
||||
pageTracker._trackPageview();
|
||||
} catch(err) {}
|
||||
// -->
|
||||
</script>
|
||||
<script type="text/javascript" src="http://tracking.musixmatch.com/t1.0/Ca5GnHcQrYhVRKy7ISCprGrOltL/xXpq5a4/t6GZ7uhXpsh7oakIpeu41P8GKWgtkCfnMlc5cUyUQOPRzCBKdlLEaM8VR828kNYNRDddkh2z0vPihcG4ORC2cVFzzCnOU/AMIv1M2862tLQRlXmpoxkD3sqtszWTmhQaybnfIZ78XmfiKEvm0LFocU9elQXzPnmuhPpIeouLgcR2nTgXKdMBapNwNMoSBfxDVqpNKRPwT3b6UYBqDcgBg/j3g0WE98SEKiLHPliKYzNmnpK7+KnO68akaK4TJIUW+9RML1UX7TLvZ9cuRZdnDeQhbQAULJm1EB4TGE7e8wL7xTFw6IYjT/vUpC5DqU6CMb7IQvqabvp5vSeGcAqWqmv17/7p/"></script>
|
||||
</body>
|
||||
</html>
|
||||
74
test/rsrc/lyrics/chartlyricscom/LadyMadonnaaspx.txt
Normal file
74
test/rsrc/lyrics/chartlyricscom/LadyMadonnaaspx.txt
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
|
||||
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head id="CL_headMasterpage"><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" /><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon" /><link rel="stylesheet" type="text/css" media="screen" href="/img/stylesheet.css" /><title>
|
||||
The Beatles Lady Madonna lyrics
|
||||
</title> <!-- Google Plus --> <script type="text/javascript">
|
||||
(function() {
|
||||
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
|
||||
po.src = 'https://apis.google.com/js/plusone.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
|
||||
})();
|
||||
</script> <!-- END Google Plus --> <!-- GA --> <script type="text/javascript">
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-5263824-1']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script> <!-- [END] GA --> <meta name="Description" content="Lady Madonna, Children at your feet Wonder how you manage to make ends meet. Who finds the money When you pay the rent? Did you think that money was heaven-sent? Friday night arrives without a suitcase. Sunday morning creeping like a nun. Monday's child has learned to tie his bootlace. See how they run. Lady Madonna, Baby at your breast Wonders how you manage to fee..." /><link href="http://www.ChartLyrics.com/cover/L2Wek0R-vU-98Juy7QhlIg.aspx" rel="image_src" /></head> <body> <!-- Header --> <div id="header_wrap"> <div id="header"> <a href="/"> <img src="/img/logo.png" id="logo" alt="" /></a> <span class="desc">Weekly Chart Song
|
||||
Lyrics for Everyone</span> <ul class="navigation"> <li class="current_page_item"><a href="/" title="Lyrics">
|
||||
Lyrics</a></li> <li><a href="/search.aspx" title="Search">
|
||||
Search</a></li> <li><a href="/app/contact.aspx">
|
||||
Contact Us</a></li> <li><a href="/api.aspx" title="Search">
|
||||
API</a></li> </ul> </div> </div> <!-- [END] Header --> <!-- Content --> <div id="content_wrap"> <div id="content" class="clearfix"> <div id="adtop"> <!-- CL Top Ad --> <script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-5439878055731936";
|
||||
/* CL Top */
|
||||
google_ad_slot = "3952105827";
|
||||
google_ad_width = 728;
|
||||
google_ad_height = 90;
|
||||
//--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <!-- [END] CL Top Ad --> </div> <!-- Page --> <div id="page"> <!-- Breadcrumb --> <div id="breadcrumb"> <a href="/">Chart Lyrics</a> > <a href="/B06.aspx">BAT</a> > <a href="/_LsLsZ7P4EK-F-LD4dJgDQ.aspx">The Beatles</a> > Lady Madonna
|
||||
</div> <!-- [END] Breadcrumb --> <h1>
|
||||
The Beatles Lady Madonna</h1> <div class="post_meta"> <div class="date meta_small">
|
||||
5 March 2008</div> <div class="comment_count meta_small">
|
||||
1 Revision</div> <div class="comment_count meta_small"> <a href="/app/correct.aspx?lid=MwAzADMA" rel="nofollow">Correct this lyric</a></div> </div> <p> <img class="alignright" width="160" height="160" src="/cover/L2Wek0R-vU-98Juy7QhlIg.aspx" alt="" title="The Beatles Lady Madonna" />
|
||||
Lady Madonna,<br />
|
||||
Children at your feet<br />
|
||||
Wonder how you manage to make ends meet.<br /> <br />
|
||||
Who finds the money<br />
|
||||
When you pay the rent?<br />
|
||||
Did you think that money was heaven-sent?<br /> <br />
|
||||
Friday night arrives without a suitcase.<br />
|
||||
Sunday morning creeping like a nun.<br />
|
||||
Monday's child has learned to tie his bootlace.<br /> <br />
|
||||
See how they run.<br /> <br />
|
||||
Lady Madonna,<br />
|
||||
Baby at your breast<br />
|
||||
Wonders how you manage to feed the rest.<br /> <br />
|
||||
See how they run.<br /> <br />
|
||||
Lady Madonna,<br />
|
||||
Lying on the bed.<br />
|
||||
Listen to the music playing in your head.<br /> <br />
|
||||
Tuesday afternoon is never ending.<br />
|
||||
Wednesday morning papers didn't come.<br />
|
||||
Thursday night your stockings needed mending.<br /> <br />
|
||||
See how they run.<br /> <br />
|
||||
Lady Madonna,<br />
|
||||
Children at your feet<br />
|
||||
Wonder how you manage to make ends meet.
|
||||
</p> <div id="adlyric"> <script type="text/javascript"> <!--
|
||||
google_ad_client = "ca-pub-5439878055731936";
|
||||
/* CL Lyric */
|
||||
google_ad_slot = "7085891077";
|
||||
google_ad_width = 468;
|
||||
google_ad_height = 60;
|
||||
//--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> </div> <!-- [END] Page --> <!-- sidebar --> <div id="sidebar"> <div class="search"> <form id="searchform" method="get" action="/search.aspx"> <fieldset> <input name="q" id="s" size="15" value="Type in a Search Query" onblur="if (this.value == ''){this.value = 'Type in a Search Query';}"
|
||||
onfocus="if (this.value == 'Type in a Search Query'){this.value = '';}" type="text" /> </fieldset> </form> </div> <div class="actions_wrap"> <div class="actions"> <div class="action" style="background: url(/img/google-plus.png) no-repeat 23px 3px;"> <h3 class="side_head"> <g:plusone size="medium"></g:plusone> </h3> </div> <div class="action" style="background: url(/img/twitter.png) no-repeat 23px 3px;"><h3 class="side_head"><a href="http://twitter.com/home?status=Lyric http%3a%2f%2fwww.ChartLyrics.com%2f_LsLsZ7P4EK-F-LD4dJgDQ%2fLady%2bMadonna.aspx" rel="nofollow">Twitter</a></h3></div> <div class="action" style="background: url(/img/facebook.gif) no-repeat 23px 3px;"><h3 class="side_head"><a href="http://www.facebook.com/sharer.php?u=http%3a%2f%2fwww.ChartLyrics.com%2f_LsLsZ7P4EK-F-LD4dJgDQ%2fLady%2bMadonna.aspx&t=The+Beatles%09Lady+Madonna%09lyrics" rel="nofollow">Facebook</a></h3></div> <div class="action" style="background: url(/img/digg.png) no-repeat 23px 3px;"><h3 class="side_head"><a href="http://digg.com/submit?phase=2&url=http%3a%2f%2fwww.ChartLyrics.com%2f_LsLsZ7P4EK-F-LD4dJgDQ%2fLady%2bMadonna.aspx" rel="nofollow">Digg</a></h3></div> <div class="action" style="background: url(/img/stumbleit.png) no-repeat 23px 3px;"><h3 class="side_head"><a href="http://www.stumbleupon.com/submit?url=http%3a%2f%2fwww.ChartLyrics.com%2f_LsLsZ7P4EK-F-LD4dJgDQ%2fLady%2bMadonna.aspx&title=The+Beatles%09Lady+Madonna%09lyrics" rel="nofollow">Stumbleupon</a></h3></div> <div class="action" style="background: url(/img/delicious.png) no-repeat 23px 3px;"><h3 class="side_head"><a href="http://del.icio.us/post?url=http%3a%2f%2fwww.ChartLyrics.com%2f_LsLsZ7P4EK-F-LD4dJgDQ%2fLady%2bMadonna.aspx&title=The+Beatles%09Lady+Madonna%09lyrics" rel="nofollow">Del.icio.us</a></h3></div> </div> </div> <div class="actions_wrap"><div class="actions"><div style="text-align:center"><object type='application/x-shockwave-flash' data='http://www.youtube.com/v/gNyHymEhZmg&feature=youtube_gdata_player' width='260' height='195'><param name='movie' value='http://www.youtube.com/v/gNyHymEhZmg&feature=youtube_gdata_player' /><img src='http://i.ytimg.com/vi/gNyHymEhZmg/0.jpg' width='260' height='195' alt='The Beatles - Lady Madonna' /></object></div></div></div> <!-- Ad right --> <div class="actions_wrap"> <div class="actions"> <div id="adright"> <script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-5439878055731936";
|
||||
/* CL Right */
|
||||
google_ad_slot = "2575381684";
|
||||
google_ad_width = 300;
|
||||
google_ad_height = 250;
|
||||
//--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> </div> </div> <!-- [END] Ad right --> </div> <!-- [END] Sidebar --> </div> </div> <!-- [END] Content --> <!-- Footer --> <div id="footer_wrap"> <div id="footer"> <a href="/"> <img src="/img/footer_logo.png" id="footer_logo" alt="" /></a> <div class="top_box"> </div> <div class="bottom_box"> <div style="text-align: center">
|
||||
Letras de canciones · Letras de canções · Lyrics · Lyrique · Songteksten · στιχοι · тексты песен · القصائد الغناءيه · เนื้อเพลง · リリック · 가사 · 叙情詩 · 抒情歌 · 歌詞 · 歌词
|
||||
</div> </div> </div> </div> <!-- [END] Footer --> </body> </html>
|
||||
|
|
@ -0,0 +1,535 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
||||
"http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>Beatles - Lady Madonna Lyrics</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf8">
|
||||
<link rel="shortcut icon" href="http://www.elyricsworld.com/favicon.ico">
|
||||
<link rel="alternate" href="http://www.elyricsworld.com/rss/latest_music_lyrics.xml" type="application/rss+xml" title="Latest Music Lyrics RSS" />
|
||||
<link rel="alternate" href="http://www.elyricsworld.com/rss/latest_news.xml" type="application/rss+xml" title="Latest News RSS" />
|
||||
<meta name="description" content="Br Lady Madonna Children At Your Feet Br Wonder How You Manage To Make Ends Meet Br Who Finds The Money When You Pay The Rent Br D...">
|
||||
<meta name="keywords" content="Lady Madonna, Beatles, Lady Madonna Lyrics, Beatles Lyrics, Lady Madonna Music Video, Lady Madonna Song Lyrics">
|
||||
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
|
||||
<script src="/images/jquery-1.7.1.min.js"></script>
|
||||
<link href="/css/styles.css?4" type="text/css" rel="stylesheet" />
|
||||
|
||||
<script type="text/javascript">
|
||||
(function() {
|
||||
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
|
||||
po.src = 'https://apis.google.com/js/plusone.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
|
||||
})();
|
||||
</script>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
||||
function monkeyPatchAutocomplete() {
|
||||
|
||||
// Don't really need to save the old fn,
|
||||
// but I could chain if I wanted to
|
||||
var oldFn = $.ui.autocomplete.prototype._renderItem;
|
||||
|
||||
$.ui.autocomplete.prototype._renderItem = function( ul, item) {
|
||||
var re = new RegExp("^" + this.term, "i") ;
|
||||
var t = item.label.replace(re,"<b>" + this.term + "</b>");
|
||||
return $( "<li></li>" )
|
||||
.data( "item.autocomplete", item )
|
||||
.append( "<a>" + t + "</a>" )
|
||||
.appendTo( ul );
|
||||
};
|
||||
}
|
||||
|
||||
//monkeyPatchAutocomplete();
|
||||
|
||||
var work = 0;
|
||||
$("#news").mouseenter(function() {
|
||||
work = 1;
|
||||
}).mouseleave(function() {
|
||||
work = 0;
|
||||
});
|
||||
|
||||
window.setInterval(function(){
|
||||
if(work == 0){
|
||||
var n = $("#n").val();
|
||||
if(n == 'no')
|
||||
{
|
||||
}
|
||||
else
|
||||
{
|
||||
$(".single_new").removeClass('active');
|
||||
$('.nn'+n).toggleClass('active');
|
||||
var vv = $('.nn'+n).attr('news');
|
||||
$('.news_number:visible').fadeOut(200, function () { $('#n'+vv).fadeIn(200) });
|
||||
if(n == 3)
|
||||
{
|
||||
var n = $("#n").val(0);
|
||||
}
|
||||
else
|
||||
{
|
||||
var n = $("#n").val(parseInt($("#n").val())+1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}, 5000);
|
||||
|
||||
$("#bio_more").click(function() {
|
||||
$('.bio_summary').fadeOut(100, function() { $('.bio_full').fadeIn(200); });
|
||||
});
|
||||
|
||||
$("#bio_hide").click(function() {
|
||||
$('.bio_full').fadeOut(100, function() { $('.bio_summary').fadeIn(200); });
|
||||
});
|
||||
|
||||
|
||||
//index news click
|
||||
$(".single_new").click(function() {
|
||||
if($(this).hasClass('active'))
|
||||
{
|
||||
}
|
||||
else
|
||||
{
|
||||
$(".single_new").removeClass('active');
|
||||
$(this).toggleClass('active');
|
||||
var vv = $(this).attr('news');
|
||||
$('.news_number:visible').fadeOut(200, function () { $('#n'+vv).fadeIn(200) });
|
||||
if(vv == 3)
|
||||
{
|
||||
var n = $("#n").val(0);
|
||||
}
|
||||
else
|
||||
{
|
||||
var n = $("#n").val(parseInt(vv)+1);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
function __highlight(s, t) {
|
||||
var matcher = new RegExp("("+$.ui.autocomplete.escapeRegex(t)+")", "ig" );
|
||||
return s.replace(matcher, "<strong>$1</strong>");
|
||||
}
|
||||
|
||||
var ac_config = {
|
||||
source: "/js/autocomplete.php",
|
||||
noCache: true, //default is false, set to true to disable caching
|
||||
minLength: 2,
|
||||
select: function(event, ui)
|
||||
{
|
||||
var url = ui.item.url;
|
||||
//$('#sform').submit();
|
||||
document.location.href = url;
|
||||
},
|
||||
};
|
||||
|
||||
$("#sfield").autocomplete(ac_config)
|
||||
|
||||
});
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-3484805-1']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
function myevup(ar) {
|
||||
if (window.XMLHttpRequest) {
|
||||
xmlhttp=new XMLHttpRequest()
|
||||
} else {
|
||||
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
|
||||
}
|
||||
xmlhttp.open("GET", "http://www.elyricsworld.com/songkick/test.php?artist=" + ar);
|
||||
xmlhttp.send(null);
|
||||
}
|
||||
</script>
|
||||
<!-- BEGIN ADREACTOR CODE -->
|
||||
<script src="http://adserver.adreactor.com/js/libcode1_noajax.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
var count = readCookie('AVPWCAP') || 0;
|
||||
|
||||
if (document.avp_ready && count < 2) {
|
||||
avp_zone({ base: 'adserver.adreactor.com', type: 'window', zid: 23, pid: 28, custom1: '', custom2: '', custom3: '', exclude: 'no_popup', exit: 'true' });
|
||||
createCookie('AVPWCAP', ++count, 1);
|
||||
}
|
||||
|
||||
function createCookie (name, value, hours) {
|
||||
var expires = "";
|
||||
|
||||
if (hours) {
|
||||
var date = new Date();
|
||||
date.setTime(date.getTime()+(hours*60*60*1000));
|
||||
expires = "; expires="+date.toGMTString();
|
||||
}
|
||||
|
||||
document.cookie = name+"="+value+expires+"; path=/";
|
||||
}
|
||||
|
||||
function readCookie (name) {
|
||||
if (!document.cookie) return null;
|
||||
var nameEQ = name + "=";
|
||||
var ca = document.cookie.split(';');
|
||||
for (var i = 0; i < ca.length; i++) {
|
||||
var c = ca[i];
|
||||
while (c.charAt(0)==' ') {
|
||||
c = c.substring(1,c.length);
|
||||
}
|
||||
if (c.indexOf(nameEQ) == 0) {
|
||||
return c.substring(nameEQ.length, c.length);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
</script>
|
||||
<!-- END ADREACTOR CODE -->
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="topnav">
|
||||
<a href="/">HOME</a>
|
||||
<a href="/toplyrics.html">TOPLYRICS</a>
|
||||
<a href="/newestlyrics_1-50.html">NEWEST LYRICS</a>
|
||||
<a href="/submit.html">SUBMIT LYRICS</a>
|
||||
<a href="/latest_news.html" class="br">NEWS</a>
|
||||
<a href="/calendar.html" class="br">CALENDAR</a>
|
||||
<div id="social_top"></div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<div id="logo_search">
|
||||
<div id="logo">
|
||||
<a href="http://www.elyricsworld.com/"><img alt="Lyrics" src="/images/logo.png" style="border:0;" /></a>
|
||||
</div>
|
||||
<div id="search_b">
|
||||
<form action="/search.php" method="GET" id="sform">
|
||||
<input type="text" name="search" id="sfield" value="Search for lyrics" onclick="if(this.value=='Search for lyrics'){this.value=''}" onblur="if(this.value==''){this.value='Search for lyrics'}" /><input type="submit" value="" id="sbutton" />
|
||||
</form>
|
||||
<div id="alphabet">
|
||||
<a href="http://www.elyricsworld.com/a_artists.html">A</a>
|
||||
<a href="http://www.elyricsworld.com/b_artists.html">B</a>
|
||||
<a href="http://www.elyricsworld.com/c_artists.html">C</a>
|
||||
<a href="http://www.elyricsworld.com/d_artists.html">D</a>
|
||||
<a href="http://www.elyricsworld.com/e_artists.html">E</a>
|
||||
<a href="http://www.elyricsworld.com/f_artists.html">F</a>
|
||||
<a href="http://www.elyricsworld.com/g_artists.html">G</a>
|
||||
<a href="http://www.elyricsworld.com/h_artists.html">H</a>
|
||||
<a href="http://www.elyricsworld.com/i_artists.html">I</a>
|
||||
<a href="http://www.elyricsworld.com/j_artists.html">J</a>
|
||||
<a href="http://www.elyricsworld.com/k_artists.html">K</a>
|
||||
<a href="http://www.elyricsworld.com/l_artists.html">L</a>
|
||||
<a href="http://www.elyricsworld.com/m_artists.html">M</a>
|
||||
<a href="http://www.elyricsworld.com/n_artists.html">N</a>
|
||||
<a href="http://www.elyricsworld.com/o_artists.html">O</a>
|
||||
<a href="http://www.elyricsworld.com/p_artists.html">P</a>
|
||||
<a href="http://www.elyricsworld.com/q_artists.html">Q</a>
|
||||
<a href="http://www.elyricsworld.com/r_artists.html">R</a>
|
||||
<a href="http://www.elyricsworld.com/s_artists.html">S</a>
|
||||
<a href="http://www.elyricsworld.com/t_artists.html">T</a>
|
||||
<a href="http://www.elyricsworld.com/u_artists.html">U</a>
|
||||
<a href="http://www.elyricsworld.com/v_artists.html">V</a>
|
||||
<a href="http://www.elyricsworld.com/w_artists.html">W</a>
|
||||
<a href="http://www.elyricsworld.com/x_artists.html">X</a>
|
||||
<a href="http://www.elyricsworld.com/y_artists.html">Y</a>
|
||||
<a href="http://www.elyricsworld.com/z_artists.html">Z</a>
|
||||
<a href="http://www.elyricsworld.com/0-9_artists.html">#</a>
|
||||
</div>
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div> <div id="pod_header">
|
||||
<div id="pleft">
|
||||
<div class="bb"><a href="https://plus.google.com/b/114922196798796614096/" target="_blank"><img src="/images/gplus.png" border="0" /></a> <span><a target="_blank" href="https://plus.google.com/b/114922196798796614096/">Google+ page</a></span></div>
|
||||
<div class="bb"><a href="http://www.facebook.com/music.lyrics.world" rel="nofollow" target="_blank"><img src="/images/fb.png" border="0" /></a> <span><a target="_blank" href="http://www.facebook.com/music.lyrics.world" rel="nofollow">Facebook</a></span></div>
|
||||
<div class="bb"><a href="https://twitter.com/#!/elyricsworldcom" rel="nofollow" target="_blank"><img src="/images/twit.png" border="0" /></a> <span><a target="_blank" href="https://twitter.com/#!/elyricsworldcom" rel="nofollow">Twitter</a></span></div>
|
||||
|
||||
<div class="banner">
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "pub-9143916203605768";
|
||||
google_alternate_ad_url = "http://www.elyricsworld.com/banners/120x600.html";
|
||||
google_ad_width = 120;
|
||||
google_ad_height = 600;
|
||||
google_ad_format = "120x600_as";
|
||||
google_ad_type = "text_image";
|
||||
google_ad_channel ="8936596857";
|
||||
google_color_border = "FFFFFF";
|
||||
google_color_bg = "FFFFFF";
|
||||
google_color_link = "6699FF";
|
||||
google_color_url = "6699FF";
|
||||
google_color_text = "000000";
|
||||
//--></script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script> </div>
|
||||
<div id="related_artists">
|
||||
<div id="ratitle">Latest Beatles Lyrics</div>
|
||||
|
||||
<a href="http://www.elyricsworld.com/be-bop-a-lula_(live)_lyrics_beatles.html">BE-BOP-A-LULA (Live) Lyrics</a>
|
||||
|
||||
<a href="http://www.elyricsworld.com/reminiscing_(live)_lyrics_beatles.html">REMINISCING (Live) Lyrics</a>
|
||||
|
||||
<a href="http://www.elyricsworld.com/away_in_a_manger_(hide_your_love_away)_lyrics_beatles.html">Away In A Manger (Hide Your Love Away) Lyrics</a>
|
||||
|
||||
<a href="http://www.elyricsworld.com/winter_wonderland_(matchbox)_lyrics_beatles.html">Winter Wonderland (Matchbox) Lyrics</a>
|
||||
|
||||
<a href="http://www.elyricsworld.com/white_christmas_lyrics_beatles.html">White Christmas Lyrics</a>
|
||||
|
||||
<a href="http://www.elyricsworld.com/what_child_is_this_(while_my_guitar)_lyrics_beatles.html">What Child Is This (While My Guitar) Lyrics</a>
|
||||
|
||||
<a href="http://www.elyricsworld.com/while_my_guitar_genly_weeps_lyrics_beatles.html">While My Guitar Genly Weeps Lyrics</a>
|
||||
|
||||
<a href="http://www.elyricsworld.com/strawberry_field_forever_(emi-remix_15.12.66)_lyrics_beatles.html">Strawberry Field Forever (Emi-remix 15.12.66) Lyrics</a>
|
||||
|
||||
<a href="http://www.elyricsworld.com/step_inside_love_lyrics_beatles.html">Step Inside Love Lyrics</a>
|
||||
|
||||
<a href="http://www.elyricsworld.com/it_came_upon_midnight_clear_(babys_in_black)_lyrics_beatles.html">It Came Upon Midnight Clear (Babys In Black) Lyrics</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="pright">
|
||||
<div id="top_banner">
|
||||
<!-- BEGIN ADREACTOR CODE -->
|
||||
<script src="http://adserver.adreactor.com/js/libcode1_noajax.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
if (document.avp_ready) { avp_zone({ base: 'adserver.adreactor.com', type: 'banner', zid: 9, pid: 28, custom1: 'Beatles', custom2: 'Lady+Madonna', custom3: '' }); }
|
||||
</script>
|
||||
<!-- END ADREACTOR CODE -->
|
||||
</div> <div id="bread_social">
|
||||
<div class="bs_left" >
|
||||
<a href="/">Home</a> <img src="/images/pip2.png" />
|
||||
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <a href="http://www.elyricsworld.com/b_artists.html" itemprop="url"><span itemprop="title">B</span></a></span> <img src="/images/pip2.png" />
|
||||
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <a href="http://www.elyricsworld.com/beatles_lyrics.html" itemprop="url"><span itemprop="title">Beatles</span></a></span>
|
||||
<img src="/images/pip2.png" /> <strong>Lady Madonna</strong>
|
||||
</div>
|
||||
<div class="bs_right">
|
||||
<iframe src="http://www.facebook.com/plugins/like.php?app_id=221027461249362&href=http://www.elyricsworld.com/lady_madonna_lyrics_beatles.html&send=false&layout=button_count&width=95&show_faces=false&action=like&colorscheme=light&font&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:85px; height:21px;" allowTransparency="true"></iframe>
|
||||
<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="elyricsworld.com">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
|
||||
</div>
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
<div id="artist_left">
|
||||
|
||||
<div id="artist_panel_l">
|
||||
<div id="artist_title">
|
||||
<div id="newsl" style="width:100%;"><h1 style="padding:0;margin:0; font-size:18px;"><strong><span class="wcspan" >Beatles - Lady Madonna Lyrics</span></strong></h1></div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<div id="panel_in" class="nopadding">
|
||||
<div id="lyric_itself">
|
||||
<div id="ringtone" style="margin-bottom:8px;">
|
||||
<img src="http://www.elyricsworld.com/phone_icon_blue_small_trans.gif" alt="Send Lady Madonna Ringtone to your Cell" border="0" height="17px" width="16px"> <a href="http://www.ringtonematcher.com/co/ringtonematcher/02/noc.asp?sid=WDLDros&artist=Beatles&song=Lady+Madonna" title="Send Lady Madonna Ringtone to your Cell" rel="nofollow" target="_blank">Send "Lady Madonna" Ringtone to your Cell</a> <img src="http://www.elyricsworld.com/phone_icon_blue_small_trans_right_2.gif" alt="Send Lady Madonna Ringtone to your Cell" border="0" height="17px" width="16px"> </div>
|
||||
<div id="lyric_tt"><h2 style="margin:0; padding:0; font-size:14px;">Lady Madonna</h2></div>
|
||||
<p>
|
||||
<br />Lady Madonna, children at your feet<br />Wonder how you manage to make ends meet<br />Who finds the money when you pay the rent?<br />Did you think that money was heaven sent?<br /><br />Friday night arrives without a suitcase<br />Sunday morning creeping like a nun<br />Monday's child has learned to tie his bootlace<br />See how they run<br /><br />Lady Madonna, baby at your breast<br />Wonders how you manage to feed the rest<br /><br />[Lady Madonna lyrics on http://www.elyricsworld.com]<br /><br />See how they run<br /><br />Lady Madonna lying on the bed<br />Listen to the music playing in your head<br /><br />Tuesday afternoon is never ending<br />Wednesday morning papers didn't come<br />Thursday night your stockings needed mending<br />See how they run<br /><br />Lady Madonna, children at your feet<br />Wonder how you manage to make ends meet<br /> </p>
|
||||
<div id="ringtone">
|
||||
<img src="http://www.elyricsworld.com/phone_icon_blue_small_trans.gif" alt="Send Lady Madonna Ringtone to your Cell" border="0" height="17px" width="16px"> <a href="http://www.ringtonematcher.com/co/ringtonematcher/02/noc.asp?sid=WDLDros&artist=Beatles&song=Lady+Madonna" title="Send Lady Madonna Ringtone to your Cell" rel="nofollow" target="_blank">Send "Lady Madonna" Ringtone to your Cell</a> <img src="http://www.elyricsworld.com/phone_icon_blue_small_trans_right_2.gif" alt="Send Lady Madonna Ringtone to your Cell" border="0" height="17px" width="16px"> </div>
|
||||
</div>
|
||||
<div id="contrib">
|
||||
<div id="contrib_left">
|
||||
|
||||
</div>
|
||||
<div id="contrib_right">
|
||||
<a href="/submitlyrics.php?lyric_id=154160&type=correction" target="_blank" rel="nofollow"><img src="/images/correct.png" border="0" id="correct" /></a>
|
||||
</div>
|
||||
<div style="clear:both;">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="comments">
|
||||
<div id="comments_number">
|
||||
Comments
|
||||
</div>
|
||||
<img src="/images/bot_arrow.png" id="bot_arrow" border="0" />
|
||||
<div id="fb-root"></div>
|
||||
<script>(function(d, s, id) {
|
||||
var js, fjs = d.getElementsByTagName(s)[0];
|
||||
if (d.getElementById(id)) {return;}
|
||||
js = d.createElement(s); js.id = id;
|
||||
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
|
||||
fjs.parentNode.insertBefore(js, fjs);
|
||||
}(document, 'script', 'facebook-jssdk'));
|
||||
</script>
|
||||
<div class="fb-comments" style="margin-top:10px;" data-href="http://www.elyricsworld.com/lady_madonna_lyrics_beatles.html" data-num-posts="10" data-width="520"></div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="artist_right" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">
|
||||
<div id="stars_out" style="margin-bottom:20px;">
|
||||
<div id="stars">
|
||||
<div id="star_lyrics" style="float:left; "></div>
|
||||
<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating">
|
||||
<span><strong id="vnumber" itemprop="average">0</strong></span> <span id="votes" itemprop="votes">(1 votes)</span>
|
||||
<meta itemprop="best" content="5"/>
|
||||
<meta itemprop="worst" content="1"/>
|
||||
</span>
|
||||
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('#star_lyrics').raty({
|
||||
start: 0,
|
||||
precision: true,
|
||||
path: '/images/rating/',
|
||||
size: 24,
|
||||
starHalf: 'star-half-big.png',
|
||||
starOff: 'star-off-big.png',
|
||||
starOn: 'star-on-big.png',
|
||||
click: function(score, evt) {
|
||||
$.get('/scripts/rate.php?t=lyrics&v=154160&r='+score, function(data) {
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<div id="artist_panel_l">
|
||||
<div id="artist_title">
|
||||
<div id="newsl" style="width:100%;"><span class="wcspan">Artist Information</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<div id="panel_in">
|
||||
<div id="rightbio">
|
||||
<div id="rbleft" class="mmg" style="width:60px;"><img src="http://www.mp3va.com/img/no_artist.gif" style="width:50px;" class="aright" alt="Lady Madonna Lyrics by Beatles" title="Lady Madonna"/></div>
|
||||
<div id="rbright" class="rrg">
|
||||
<a href="http://www.elyricsworld.com/beatles_lyrics.html">Beatles Lyrics</a><br />
|
||||
<div style="padding:3px; padding-left:0;"><g:plusone size="medium"></g:plusone></div>
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="banner_rr2">
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "pub-9143916203605768";
|
||||
/* 300x250, ???????? 10-7-29 */
|
||||
google_ad_slot = "4472986252";
|
||||
google_ad_width = 300;
|
||||
google_ad_height = 250;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script> </div>
|
||||
<div id="artist_panel_l" style="margin-top:20px; margin-bottom:10px;">
|
||||
<div id="artist_title">
|
||||
<div id="newsl" style="width:100%;"><span class="wcspan">Album Information</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<div id="panel_in">
|
||||
<div id="rightbio">
|
||||
<img src="http://images.amazon.com/images/P/B00005GKNP.01._SCMZZZZZZZ_.jpg" itemprop="photo" class="aright" style="float:left;" alt="Beatles CD Singles Collection Album Lyrics"/>
|
||||
<img src="/images/cd.jpg" style="float:left; margin-top:15px;" />
|
||||
<div style="clear:both;"></div>
|
||||
<div id="ainfo">
|
||||
CD Singles Collection<br />
|
||||
</div>
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="artist_panel_l" style="margin-top:20px; margin-bottom:10px;">
|
||||
<div id="artist_title">
|
||||
<div id="newsl" style="width:100%;"><span class="wcspan">Lady Madonna Video</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<div id="panel_in" style="padding-left:9px;">
|
||||
<object width="279" height="193"><param name="movie" value="http://www.youtube.com/v/VfthrizXKOM&hl=en_US&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/VfthrizXKOM&hl=en_US&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="280" height="193"></embed></object>
|
||||
<div style="width:300px; margin-top:5px;">Embed Video <input onclick="select();" value="<div style="text-align:center;width:302px;height:220px;"><object width="300" height="193"><param name="movie" value="http://www.youtube.com/v/VfthrizXKOM&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/VfthrizXKOM&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="193"></embed></object><br><a href="http://www.elyricsworld.com/lady_madonna_lyrics_beatles.html">Lady Madonna Lyrics</a> at elw</div>" style="width: 276px;" readonly="readonly" type="text"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="artist_panel_l" style="margin-top:20px; margin-bottom:10px;">
|
||||
<div id="artist_title">
|
||||
<div id="newsl" style="width:100%;"><span class="wcspan">Lyrics Widget</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<div id="panel_in" style="padding-left:9px;">
|
||||
<embed src='http://widget.elyricsworld.com/scroller.swf?lid=154160&speed=4' width='280' height='160' type='application/x-shockwave-flash'/></embed></object>
|
||||
<div style="width:300px; margin-top:5px;">Embed Widget <input onclick="select();" value="<div style='font-size:10px; font-family: Verdana, Tahoma, Sans-serif; line-height:10px; width:300px;'>
|
||||
<object width='300' height='175'>
|
||||
<embed src='http://widget.elyricsworld.com/scroller.swf?lid=154160&speed=4'
|
||||
width='300' height='175' type='application/x-shockwave-flash'/></embed>
|
||||
</object>
|
||||
<br /><center><a href='http://www.elyricsworld.com/lady_madonna_lyrics_beatles.html' target='_blank'>Lady Madonna</a>
|
||||
found at <a href='http://www.elyricsworld.com' target='_blank'>elyricsworld.com</a></center>
|
||||
</div>" style="width: 276px;" readonly="readonly" type="text"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="banner_rr2">
|
||||
<!-- BEGIN ADREACTOR CODE -->
|
||||
<script src="http://adserver.adreactor.com/js/libcode1_noajax.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
if (document.avp_ready) { avp_zone({ base: 'adserver.adreactor.com', type: 'banner', zid: 6, pid: 28, custom1: 'Beatles', custom2: 'Lady+Madonna', custom3: '' }); }
|
||||
</script>
|
||||
<!-- END ADREACTOR CODE --> </div>
|
||||
<div id="artist_panel_l">
|
||||
<div id="artist_title">
|
||||
<div id="newsl" style="width:100%;"><span class="wcspan">Related Lyrics</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<div id="panel_in">
|
||||
|
||||
<div style="border-bottom:1px dashed #ccc;line-height:23px;"><a href="http://www.elyricsworld.com/tik_tok_lyrics_ke$ha.html">Ke$ha - Tik Tok Lyrics</a></div>
|
||||
<div style="border-bottom:1px dashed #ccc;line-height:23px;"><a href="http://www.elyricsworld.com/not_over_you_lyrics_gavin_degraw.html">Gavin Degraw - Not Over You Lyrics</a></div>
|
||||
<div style="border-bottom:1px dashed #ccc;line-height:23px;"><a href="http://www.elyricsworld.com/deuces_lyrics_chris_brown.html">Chris Brown - Deuces Lyrics</a></div>
|
||||
<div style="border-bottom:1px dashed #ccc;line-height:23px;"><a href="http://www.elyricsworld.com/i_dont_lie_(freestyle)_lyrics_wiz_khalifa.html">Wiz Khalifa - I Dont Lie (Freestyle) Lyrics</a></div>
|
||||
<div style="border-bottom:1px dashed #ccc;line-height:23px;"><a href="http://www.elyricsworld.com/lost_in_the_sauce_lyrics_kid_ink.html">Kid Ink - Lost In The Sauce Lyrics</a></div>
|
||||
<div style="border-bottom:1px dashed #ccc;line-height:23px;"><a href="http://www.elyricsworld.com/domino_the_destitute_lyrics_coheed_and_cambria.html">Coheed and Cambria - Domino The Destitute Lyrics</a></div>
|
||||
<div style="border-bottom:1px dashed #ccc;line-height:23px;"><a href="http://www.elyricsworld.com/rihanna_(that's_my_attitude)_lyrics_flo_rida.html">Flo Rida - Rihanna (That's My Attitude) Lyrics</a></div>
|
||||
<div style="border-bottom:1px dashed #ccc;line-height:23px;"><a href="http://www.elyricsworld.com/laserlight_lyrics_jessie_j.html">Jessie J - Laserlight Lyrics</a></div>
|
||||
<div style="border-bottom:1px dashed #ccc;line-height:23px;"><a href="http://www.elyricsworld.com/finally_found_you_lyrics_enrique_iglesias.html">Enrique Iglesias - Finally Found You Lyrics</a></div>
|
||||
<div style="border-bottom:1px dashed #ccc;line-height:23px;"><a href="http://www.elyricsworld.com/all_out_(br3ndan_song)_lyrics_justin_bieber.html">Justin Bieber - All Out (Br3ndan Song) Lyrics</a></div>
|
||||
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
</div>
|
||||
<script>myevup('Beatles');</script>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<div id="fin">
|
||||
<div class="fleft">
|
||||
<a href="http://www.elyricsworld.com/">Lyrics</a> |
|
||||
<a href="/privacy_policy.html">Privacy Policy</a> |
|
||||
<a href="/rss_feeds.html">RSS Feeds</a> |
|
||||
<a href="/contact.html">Contacts</a>
|
||||
</div>
|
||||
<div class="fright">
|
||||
©2004-2012 elyricsworld.com
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Begin comScore Tag -->
|
||||
<script type="text/javascript">
|
||||
document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js'%3E%3C/script%3E"));
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
// Note: it's important to keep these in separate script blocks
|
||||
COMSCORE.beacon({
|
||||
c1: 2,
|
||||
c2: "6772046",
|
||||
c3: "",
|
||||
c4: "www.elyricsworld.com/lady_madonna_lyrics_beatles.html", // Replace this with the page URL that the site is on here, and also enter it into the <noscript> img below
|
||||
c5: "",
|
||||
c6: "",
|
||||
c15: ""
|
||||
});
|
||||
</script>
|
||||
<noscript>
|
||||
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6772046&c3=&c4=www.elyricsworld.com/lady_madonna_lyrics_beatles.html&c5=&c6=&c15=&cj=1" />
|
||||
</noscript>
|
||||
<!-- End comScore Tag -->
|
||||
</body>
|
||||
</html>
|
||||
522
test/rsrc/lyrics/lacoccinellenet/550512html.txt
Normal file
522
test/rsrc/lyrics/lacoccinellenet/550512html.txt
Normal file
|
|
@ -0,0 +1,522 @@
|
|||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>Paroles de Lilly Wood The Prick : Hey It's Ok - paroles de chanson</title>
|
||||
<meta name="description" content="Lilly Wood The Prick : Hey It's Ok paroles de la chanson "/>
|
||||
<link href="/s.css?1380773110" rel="stylesheet" type="text/css" title="default"/>
|
||||
<script type="text/javascript" src="/g.js?1380773110"></script>
|
||||
<script type="text/javascript"><!--
|
||||
dwService.reload = false;
|
||||
dwService.setTargetings({"pagId":"2508","pagType":"content","layId":"551","directories":["\/paroles-officielles\/","\/"],"conId":"550512","appId":"5873"});
|
||||
initGA(['UA-4587199-1', 'UA-26394066-3']);
|
||||
initWAI('dugwood', 474759, 474760);//-->
|
||||
</script>
|
||||
<link rel="icon" type="image/gif" href="/favicon.gif?1380773110"/>
|
||||
<script type="text/javascript"><!--
|
||||
var cocci_sas_target = 'noft';
|
||||
if (document.location.pathname === '/index.html')
|
||||
{
|
||||
cocci_sas_target = 'home';
|
||||
}
|
||||
var disableExpand = {2013918: 'sfr-red-tstm', 2013921: 'sfr-red-nuitsfr'},
|
||||
date = new Date(),
|
||||
cocci_sas_sfr = '';
|
||||
if (disableExpand['' + date.getFullYear() + (date.getMonth() + 1) + date.getDate()] || document.location.hash.indexOf('#sfr-red-') === 0)
|
||||
{
|
||||
cocci_sas_sfr = disableExpand['' + date.getFullYear() + (date.getMonth() + 1) + date.getDate()] || document.location.hash.substring(1);
|
||||
}//-->
|
||||
</script>
|
||||
</head>
|
||||
<body id="layout551" class="dom1 contentPage cdirParolesOfficielles app5873 status3">
|
||||
<div id="contener">
|
||||
<div id="header-background">
|
||||
<div id="header">
|
||||
<div id="header-content">
|
||||
<div class="header"></div>
|
||||
<!--Ht@7076--><div class="headerLogo"><a href="/index.html"><img src="/logo-2013.png?1380773110" width="200" height="64" alt="Accueil paroles de chansons"/></a>
|
||||
</div><!--/Ht@7076--><!--LoBo@4755--><div class="zoneLogin"><div id="loginBoxLogged" style="display:none" class="loginBox">
|
||||
|
||||
<div class="pseudo" style="float:left">
|
||||
|
||||
|
||||
<a href="#" title="Mon compte" onclick="dwUser.go('account');return false;" id="loginBox_pseudo_"> </a><script type="text/javascript"><!--
|
||||
dwUser.displayIfLogged('loginBox_pseudo_');//-->
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="mypage" style="float:left">
|
||||
|
||||
|
||||
|
||||
<a href="#" title="Ma page personnelle" onclick="dwUser.go('user');return false;" class="button"> </a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="admin" style="float:left">
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="#" title="Mes contenus" class="button" onclick="dwUser.go(); return false;"> </a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="addcontent" style="float:left">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="#" onclick="dwUser.go('content');return false;" title="Ajouter un contenu" class="button"> </a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="editcontent" style="float:left">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="#" title="Éditer ce contenu" class="button" style="display:none" id="loginBox_editcontent_"> </a>
|
||||
<script type="text/javascript"><!--
|
||||
var m = document.location.href.match(/\/(\d+)\.html/);
|
||||
if (m && m[1] && document.location.href.indexOf('/m/') === -1)
|
||||
{
|
||||
dwElement.setDisplayStyle('loginBox_editcontent_', true);
|
||||
dwElement.get('loginBox_editcontent_').onclick = function ()
|
||||
{
|
||||
dwUser.go('content', m[1]);return false;
|
||||
}
|
||||
} //-->
|
||||
</script>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="messages" style="float:left">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="#" onclick="dwUser.go('message');return false;" title="Mes messages" class="button"><span id="loginBox_msg_" class="number"> </span></a><script type="text/javascript"><!--
|
||||
dwUser.displayIfLogged('loginBox_msg_');//-->
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="notifications" style="float:left">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="#" onclick="dwUser.go('notifications');return false;" title="Notifications" class="button"><span id="loginBox_notif_" class="number"> </span></a><script type="text/javascript"><!--
|
||||
dwUser.displayIfLogged('loginBox_notif_');//-->
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="friends" style="float:left">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="#" onclick="dwUser.go('friends');return false;" title="Amis" class="button"><span id="loginBox_fr_" class="number"> </span></a><script type="text/javascript"><!--
|
||||
dwUser.displayIfLogged('loginBox_fr_');//-->
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="favorites" style="float:left">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="#" onclick="dwLightBox.cache = true; dwLightBox.open('Mes contenus favoris', dwService.getUrl('s', 'contents.favorites'), 'ajax');return false;" title="Contenus favoris" class="button"> </a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="logout" style="float:left">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="#" title="Déconnexion" onclick="dwUser.logout(); return false;" class="button"> </a>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="clr-zone" style="clear:left"> </div>
|
||||
</div>
|
||||
<div id="loginBoxNotLogged" class="loginBox">
|
||||
<a href="#" title="Connexion" onclick="dwUser.login();return false;">Connexion</a> - <a href="#" title="Inscription" onclick="dwService.open('register', 'Inscription');return false;">Inscription</a>
|
||||
</div>
|
||||
<script type="text/javascript"><!--
|
||||
dwUser.displayIfLogged('loginBoxLogged','loginBoxNotLogged'); //-->
|
||||
</script></div><!--/LoBo@4755--><!--Ht@7075--><div class="headerMenu"><table cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><a href="/index.html">CHANSONS</a></td>
|
||||
<td><a href="/artistes/index.html">ARTISTES</a></td>
|
||||
<td><a href="/albums/index.html">ALBUMS</a></td>
|
||||
<td><a href="/paroles-officielles/index.html">PAROLES OFFICIELLES</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><!--/Ht@7075--><!--Ht@7077--><div class="headerTitle"><img src="/home-title.png?1380773110" width="693" height="110" alt="Paroles de chansons, traductions, explications"/>
|
||||
</div><!--/Ht@7077--><!--SeFo@7074--><div class="headerSearch">
|
||||
<form action="/s.html" method="post" id="searchForm-7074" onsubmit="return dwSearch.send(this.id);">
|
||||
<p><span class="searchForm"><input type="text" name="q" id="searchForm-7074-q" size="15" alt="Rechercher une chanson, un artiste..." value="Rechercher une chanson, un artiste..." onfocus="if(typeof(dwSearch.d['searchForm-7074']) === 'undefined' || dwSearch.d['searchForm-7074'] === this.value) this.value = ''"/><a href="#" onclick="if (dwSearch.send('searchForm-7074') === true) dwElement.get('searchForm-7074').submit(); return false;"><img id="searchForm-7074-default" src="/spacer.gif?1380773110" alt="Rechercher une chanson, un artiste..."/></a></span><input type="submit" style="display:none"/><!-- affiché uniquement pour qu'en tapant sur entrée dans un champ ça POST le formulaire --></p>
|
||||
<p id="searchForm-7074-message" style="display: none"> </p>
|
||||
</form>
|
||||
<script type="text/javascript"><!--
|
||||
dwAjax.setMessages('searchForm-7074', {1:'Veuillez entrer au moins un mot-clé de recherche'});
|
||||
dwSearch.restore('searchForm-7074');//-->
|
||||
</script></div><!--/SeFo@7074--><!--Ht@4808--><div class="pub728"><script type="text/javascript"><!--
|
||||
SmartAdServerAjax('2301/16363',438,cocci_sas_target,'ww62.smartadserver.com');//-->
|
||||
</script>
|
||||
</div><!--/Ht@4808-->
|
||||
<div class="footer"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="body-background">
|
||||
<div id="body-header"></div>
|
||||
<div id="body">
|
||||
<div id="body-content">
|
||||
|
||||
<div id="zone1"><div class="header"></div><div id="subzone1"><!--PaFi@6710--><div class="breadcrumb">
|
||||
<div id="breadcrumb" class="dwBreadcrumb"><a href="/index.html" title="Accueil">Accueil</a> > <a href="/paroles-officielles/index.html" title="Paroles de chansons officielles">Paroles de chansons officielles</a> > <a href="/paroles-officielles/830989.html" title="Lilly Wood The Prick">Lilly Wood The Prick</a> </div></div><!--/PaFi@6710--><!--CoSo@5873--><div><div id="content550512" class="content contentSong item">
|
||||
|
||||
<div class="title"><div class="inner"><h1 class="fn">Hey It's Ok - Lilly Wood The Prick</h1>
|
||||
</div></div>
|
||||
|
||||
<div class="itunes" style="clear:right;float:right"><div class="inner"><a href="#" onclick="dwDocument.openWindow('http://clk.tradedoubler.com/click?p=23753&a=1284621&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZSearch.woa%2Fwa%2Fsearch%3Fterm=lilly%20wood%20the%20prick%20hey%20it%20s%20ok%26partnerId%3D2003'); return false;" title="Acheter l'album ou les MP3 sur iTunes"><img src="/itunes.png?1380773110" alt="Acheter l'album ou les MP3 sur iTunes"/></a></div></div>
|
||||
|
||||
<div class="amazon" style="float:right"><div class="inner">
|
||||
<a href="#" onclick="dwDocument.openWindow('http://www.amazon.fr/gp/search?ie=UTF8&index=mp3-downloads&keywords=lilly%20wood%20the%20prick%20hey%20it%20s%20ok&tag=lacoccindunet-21'); return false;" title="Acheter l'album ou les MP3 sur Amazon"><img src="/amazon.png?1380773110" alt="Acheter l'album ou les MP3 sur Amazon"/></a></div></div>
|
||||
|
||||
<div class="fnac" style="float:right"><div class="inner">
|
||||
<a href="#" onclick="dwDocument.openWindow('http://ad.zanox.com/ppc/?8735413C1813773704T&ULP=[[recherche.fnac.com%2FSearch%2FSearchResult.aspx%3FSCat=3%211&Search=lilly%20wood%20the%20prick]]'); return false;" title="Acheter l'album ou les MP3 sur Fnac"><img src="/fnac.png?1380773110" alt="Acheter l'album ou les MP3 sur Fnac"/></a>
|
||||
</div></div>
|
||||
|
||||
<div class="album" style="clear:right;"><div class="inner empty"><strong>Albums :</strong>
|
||||
</div></div>
|
||||
|
||||
<div class="persons"><div class="inner">
|
||||
<strong>Chanteurs :</strong>
|
||||
<a href="/paroles-officielles/830989.html">Lilly Wood The Prick</a><br/>
|
||||
|
||||
<strong>Compositeurs :</strong>
|
||||
<a href="/paroles-officielles/830987.html">Benjamin Cotto</a>, <a href="/paroles-officielles/830967.html">Nili Ben Meir</a><br/>
|
||||
|
||||
<strong>Auteurs :</strong>
|
||||
<a href="/paroles-officielles/830987.html">Benjamin Cotto</a>, <a href="/paroles-officielles/830967.html">Nili Ben Meir</a><br/>
|
||||
|
||||
<strong>Arrangeurs :</strong>
|
||||
<a href="/paroles-officielles/830934.html">Pierre Guimard</a><br/>
|
||||
|
||||
<strong>Éditeurs :</strong>
|
||||
<a href="/paroles-officielles/545774.html">Choke Industry</a>, <a href="/paroles-officielles/545654.html">Warner Chappell Music France</a><br/>
|
||||
</div></div>
|
||||
|
||||
<div class="tonefuse"><div class="inner"><a href="#" onclick="dwDocument.openWindow('http://www.ringtonematcher.com/co/ringtonematcher/02/noc.php?sid=LCCLros&artist=lilly+wood+the+prick&song=hey+it+s+ok'); return false"><img src="/tonefuseLeft.png?1380773110" alt=""/> <span>Télécharge la sonnerie de "Hey It's Ok" pour ton mobile</span></a></div></div>
|
||||
|
||||
<div class="jukebo"><div class="inner"><table width="100%">
|
||||
<tr>
|
||||
<td><span>Voir tous les clips</span> <a href="#" title="jukebo" onclick="window.open('http://www.jukebo.fr/lilly-wood-and-the-prick', 'jukebo'); return false;">Lilly Wood And The Prick</a></td>
|
||||
<td>
|
||||
<div id="disableJukebo" style="display:none"><a href="#" onclick="dwUtils.createCookie('dwJukebo', '1', 30, '/'); dwElement.setValue('disableJukebo', 'Désactivation effectuée pour les 30 prochains jours'); return false;">Désactiver la lecture automatique des vidéos</a></div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<script type="text/javascript"><!--
|
||||
var ULTIMEDIA_zone = '1', c = dwUtils.readCookie('dwJukebo');
|
||||
// S'il y a le cookie sans autoplay, on utilise la zone 3
|
||||
if (c && c === '1') {
|
||||
ULTIMEDIA_zone = '3';
|
||||
}
|
||||
if (ULTIMEDIA_zone === '1') {
|
||||
dwElement.setDisplayStyle('disableJukebo');
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<script type='text/javascript'><!--
|
||||
var ULTIMEDIA_include = '<scr' + 'ipt type="text/javascript" src="http://www.ultimedia.com/deliver/musique/js/mdtk/01497444/article/qksfuz/zone/' + ULTIMEDIA_zone + '/"></scr' + 'ipt>';document.write(ULTIMEDIA_include);
|
||||
//--></script>
|
||||
</div></div>
|
||||
|
||||
<div class="text"><div class="inner"><h3>Paroles de la chanson "Hey It's Ok"</h3>
|
||||
<p>Mama, Papa please forget the times I wet my bed<br/>I swear not to do it again<br/>Please forget the way I looked when I was fourteen<br/>I didn’t know who I wanted to be<br class="clear" style="clear:both;"/></p><p>Hey ! It’s OK, it’s OK<br/>Cause I’ve found what I wanted<br/>I said hey ! It’s OK, it’s OK<br/>Cause I’ve found what I wanted<br class="clear" style="clear:both;"/></p><p>Friends and lovers please forgive the mean things I’ve said<br/>I swear not to do it again<br/>Please forget the way I act when I’ve had too much to drink<br/>I’m fighting against myself<br class="clear" style="clear:both;"/></p><p>Hey ! It’s OK, it’s OK<br/>Cause I’ve found what I wanted<br/>I said hey ! It’s OK, it’s OK<br/>Cause I’ve found what I wanted<br class="clear" style="clear:both;"/></p><p>And I swear not to do anything funny anymore<br/>Yes I swear not to do anything funny anymore<br class="clear" style="clear:both;"/></p><p>Hey ! It’s OK, it’s OK<br/>Cause I’ve found what I wanted<br/>I said hey ! It’s OK, it’s OK<br/>Cause I’ve found what I wanted<br class="clear" style="clear:both;"/></p><p>Hey ! It’s OK, it’s OK<br/>Cause I’ve found what I wanted<br/>I said hey ! It’s OK, it’s OK<br/>Cause I’ve found what I wanted</p>
|
||||
<div style="clear:both;" class="clr-zone"> </div>
|
||||
</div></div>
|
||||
|
||||
<div class="tonefuse"><div class="inner"><a href="#" onclick="dwDocument.openWindow('http://www.ringtonematcher.com/co/ringtonematcher/02/noc.php?sid=LCCLros&artist=lilly+wood+the+prick&song=hey+it+s+ok'); return false"><img src="/tonefuseLeft.png?1380773110" alt=""/> <span>Télécharge la sonnerie de "Hey It's Ok" pour ton mobile</span></a></div></div>
|
||||
|
||||
|
||||
</div></div><!--/CoSo@5873--><!--AdDFP@6768--><div class="pub300"><script type="text/javascript"><!--
|
||||
dwService.dfpFillSlot("6768-300x250",300,250); //-->
|
||||
</script><!-- dfp@0 --></div><!--/AdDFP@6768--></div><div class="footer"></div></div>
|
||||
<div id="clr-z1" class="clr-zone"> </div>
|
||||
<div id="zone2"><div class="header"></div><div id="subzone2"><!--Ht@4807--><div class="pub300"><script type="text/javascript"><!--
|
||||
SmartAdServerAjax('2301/16363',439,cocci_sas_target,'ww62.smartadserver.com');//-->
|
||||
</script>
|
||||
</div><!--/Ht@4807--><!--Ht@4840--><div class="box facebox"><h4>Facebook / Soirées</h4>
|
||||
<div id="facebookIframe"></div><div id="soonnightIframe"></div>
|
||||
<script type="text/javascript"><!--
|
||||
dwElement.addEvent(null, 'load', function()
|
||||
{
|
||||
dwElement.setValue('facebookIframe', '<i' + 'frame src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Flacoccinelle.net&width=288&colorscheme=light&show_faces=false&stream=false&header=false&height=70" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:288px; height:70px;" allowTransparency="true"></i' + 'frame>');
|
||||
// SoonNight
|
||||
dwElement.setValue('soonnightIframe', '<i' + 'frame src="http://www.soonnight.com/agenda/agenda,1039.html?r=1&url_page=http://www.soonnight.com&color=white&go_soonnight=1" width="268" height="142" scrolling="no" frameborder="0"></ifr' + 'ame>');
|
||||
}); //-->
|
||||
</script>
|
||||
</div><!--/Ht@4840--></div><div class="footer"></div></div>
|
||||
<div id="clr-z2" class="clr-zone"> </div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="body-footer"></div>
|
||||
</div>
|
||||
<div id="footer-background">
|
||||
<div id="footer">
|
||||
<div id="footer-content">
|
||||
<div class="header"></div>
|
||||
<!--Ht@4820--><div class="boxFooter">
|
||||
|
||||
<div id="htmlNotLogged-4820"><div class="titleFooter">À PROPOS</div>
|
||||
<p>Depuis 2001, La Coccinelle propose et construit une communauté musicale.</p>
|
||||
<br/><br/>
|
||||
<p>Le site s'est développé autour d'une idée simple : comprendre les paroles des chansons françaises et internationales, qui souvent regorgent de nombreux secrets.</p>
|
||||
<br/><br/>
|
||||
<div class="starFooter"><a href="#" onclick="dwUser.login(); return false">Devenir membre de la communauté</a></div></div>
|
||||
<div id="htmlLogged-4820"><div class="titleFooter">À PROPOS</div>
|
||||
<p>Depuis 2001, La Coccinelle propose et construit une communauté musicale.</p>
|
||||
<br/><br/>
|
||||
<p>Le site s'est développé autour d'une idée simple : comprendre les paroles des chansons françaises et internationales, qui souvent regorgent de nombreux secrets.</p>
|
||||
<br/><br/></div>
|
||||
<script type="text/javascript"><!--
|
||||
dwUser.displayIfLogged('htmlLogged-4820','htmlNotLogged-4820'); //-->
|
||||
</script>
|
||||
</div><!--/Ht@4820--><!--Ht@4821--><div class="boxFooter">
|
||||
|
||||
<div id="htmlNotLogged-4821"><div class="titleFooter">TOP RUBRIQUES</div>
|
||||
|
||||
<ul>
|
||||
<li><a href="/top/index.html">Top 50 chansons</a></li>
|
||||
<li><a href="/dc/index.html">Derniers ajouts</a></li>
|
||||
<li><a href="/liens/index.html">Partenaires</a></li>
|
||||
<li><a href="/faq/index.html">Foire aux questions</a></li>
|
||||
<li><a href="http://www.annonces.com" title="petite annonce">Annonce</a></li>
|
||||
</ul>
|
||||
|
||||
<ul>
|
||||
<li><a href="/actus/index.html">Actualités</a></li>
|
||||
<li><a href="/index.html">Paroles de chansons</a></li>
|
||||
<li><a href="#" onclick="dwUser.login(); return false;">Inscription</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="htmlLogged-4821"><div class="titleFooter">TOP RUBRIQUES</div>
|
||||
|
||||
<ul>
|
||||
<li><a href="/top/index.html">Top 50 chansons</a></li>
|
||||
<li><a href="/dc/index.html">Derniers ajouts</a></li>
|
||||
<li><a href="/liens/index.html">Partenaires</a></li>
|
||||
<li><a href="/faq/index.html">Foire aux questions</a></li>
|
||||
<li><a href="http://www.annonces.com" title="petite annonce">Annonce</a></li>
|
||||
</ul>
|
||||
|
||||
<ul>
|
||||
<li><a href="/actus/index.html">Actualités</a></li>
|
||||
<li><a href="/index.html">Paroles de chansons</a></li>
|
||||
<li><a href="#" onclick="dwUser.go('account'); return false;">Mon compte</a></li>
|
||||
</ul></div>
|
||||
<script type="text/javascript"><!--
|
||||
dwUser.displayIfLogged('htmlLogged-4821','htmlNotLogged-4821'); //-->
|
||||
</script>
|
||||
</div><!--/Ht@4821--><!--Ht@4822--><div class="boxFooter linkCocci"><div class="titleFooter">SUIVEZ LA COCCINELLE</div>
|
||||
|
||||
<div class="icoFollow"><a href="/actus/rss.xml">Les actus via RSS</a></div>
|
||||
<div class="icoFollow twitterF"><a href="http://twitter.com/lacoccinellenet" onclick="dwDocument.openWindow(this.href, 'twitter');return false">Suivez-nous sur Twitter</a></div>
|
||||
<div class="icoFollow facebookF"><a href="http://www.facebook.com/pages/La-Coccinelle-du-Net/140698937843" onclick="dwDocument.openWindow(this.href, 'facebook');return false">Rejoignez-nous sur facebook</a></div>
|
||||
|
||||
|
||||
</div><!--/Ht@4822--><!--Ht@4816--><div class="copyright">©2001-2014 LaCoccinelle.net
|
||||
<script type="text/javascript"><!--
|
||||
/* GestionPub Habillage temporaire */
|
||||
if (cocci_sas_target !== 'curly' && !cocci_sas_sfr)
|
||||
{
|
||||
document.write('<sc' + 'ript type="text/javascript" src="http://a01.gestionpub.com/GP2a52c58652a78c759"></scr' + 'ipt>');
|
||||
document.write('<sc' + 'ript type="text/javascript" src="http://a01.gestionpub.com/GP4221c74529ce2c"></scr' + 'ipt>');
|
||||
}
|
||||
dwElement.addEvent(null, 'load', function()
|
||||
{
|
||||
var s = document.createElement('script'),
|
||||
node = document.getElementsByTagName('script')[0],
|
||||
online = new Image(), members = new Image(), xiti = new Image();
|
||||
/* GestionPub Footer Expand DESACTIVE * /
|
||||
if (cocci_sas_target !== 'curly')
|
||||
{
|
||||
s.async = true;
|
||||
s.type = 'text/javascript';
|
||||
s.src = 'http://a01.gestionpub.com/GP2a72c88df2355ac48'; // Footer Expand
|
||||
node.parentNode.insertBefore(s, node);
|
||||
}
|
||||
/* Connectés */
|
||||
online.src = 'http://coccinelledunet.free.fr/online.png.php?host=lc';
|
||||
if (dwUser.isLogged === true)
|
||||
{
|
||||
members.src = 'http://coccinelledunet.free.fr/online.png.php?host=lcm';
|
||||
}
|
||||
Xt_param = 's=175975&p=';
|
||||
try {Xt_r = top.document.referrer;}
|
||||
catch(e) {Xt_r = document.referrer; }
|
||||
Xt_h = new Date();
|
||||
Xt_i = 'http://logv26.xiti.com/hit.xiti?'+Xt_param;
|
||||
Xt_i += '&hl='+Xt_h.getHours()+'x'+Xt_h.getMinutes()+'x'+Xt_h.getSeconds();
|
||||
if(parseFloat(navigator.appVersion)>=4) {Xt_s=screen;Xt_i+='&r='+Xt_s.width+'x'+Xt_s.height+'x'+Xt_s.pixelDepth+'x'+Xt_s.colorDepth;}
|
||||
xiti.src = Xt_i+'&ref='+Xt_r.replace(/[<>"]/g, '').replace(/&/g, '$');
|
||||
});//-->
|
||||
</script>
|
||||
</div><!--/Ht@4816--><!--Ht@4817--><div class="menuFooter"><a href="/index.html">Accueil</a> <!--<a href="">A propos de la coccinelle</a>--> <a href="#" onclick="dwService.open('tou');return false">CGU</a> <a href="/s/index.html">Contact</a>
|
||||
</div><!--/Ht@4817--><!--Ht@7031--><div class=""><script type="text/javascript"><!--
|
||||
if (cocci_sas_sfr && cocci_sas_sfr === 'sfr-red-nuitsfr')
|
||||
{
|
||||
var sfrRed = {click:'http://ww62.smartadserver.com/call/cliccommand/8932016/[timestamp]?', image:'nuitsfr2', pixels:[]};
|
||||
}
|
||||
if (cocci_sas_sfr && cocci_sas_sfr.indexOf('sfr-red-') === 0)
|
||||
{
|
||||
dwElement.addEvent(null, 'load', function ()
|
||||
{
|
||||
if (document.location.href.indexOf('index.html') !== -1)
|
||||
{
|
||||
dwElement.get('sas_438').id = 'sas_438_disabled';
|
||||
dwElement.get('sas_438_disabled').style.display = 'none';
|
||||
}
|
||||
for (var i in sfrRed.pixels)
|
||||
{
|
||||
var img = document.createElement('img');
|
||||
img.src = sfrRed.pixels[i];
|
||||
dwElement.get('footer-content').appendChild(img);
|
||||
}
|
||||
dwElement.get('contener').style.background = 'url(/pub-sfr-' + sfrRed.image + '.jpg) top center no-repeat';
|
||||
dwElement.get('header').style.paddingTop = '200px';
|
||||
document.body.style.background = '#000';
|
||||
document.body.style.cursor = 'pointer';
|
||||
dwElement.get('header-content').style.cursor = 'default';
|
||||
dwElement.get('footer-content').style.cursor = 'default';
|
||||
dwElement.get('body-content').style.cursor = 'default';
|
||||
dwElement.get('footer-content').style.background = '#000';
|
||||
dwElement.get('footer-background').style.background = 'none';
|
||||
dwElement.addEvent(document.body, 'click', function(event)
|
||||
{
|
||||
if (event.target && event.target.id)
|
||||
{
|
||||
if (event.target.id === 'header' || event.target.id === 'footer' || event.target.id === 'body' || event.target.id === 'header-background' || event.target.id === 'footer-background' || event.target.id === 'body-background')
|
||||
{
|
||||
dwDocument.openWindow(sfrRed.click);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
</div><!--/Ht@7031-->
|
||||
<div class="footer"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
155
test/rsrc/lyrics/lyrics007com/Lady20Madonna20Lyricshtml.txt
Normal file
155
test/rsrc/lyrics/lyrics007com/Lady20Madonna20Lyricshtml.txt
Normal file
|
|
@ -0,0 +1,155 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>The Beatles - Lady Madonna Lyrics</title>
|
||||
<meta http-equiv=content-language content=en-us>
|
||||
<meta name="robots" content="INDEX,FOLLOW" >
|
||||
<meta property="fb:admins" content="100002318964661" />
|
||||
<meta name="keywords" content="Lady Madonna, The Beatles, The Beatles Lady Madonna Lyrics, Lady Madonna song lyrics, Lady Madonna lyrics">
|
||||
<meta name="description" content="Read guaranteed accurate human-edited The Beatles Lady Madonna lyrics from lyrics007">
|
||||
<link rel="canonical" href="http://www.lyrics007.com/The%20Beatles%20Lyrics/Lady%20Madonna%20Lyrics.html" />
|
||||
<link rel="stylesheet" href="http://www.lyrics007.com/s.css" rev="stylesheet" type="text/css">
|
||||
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
|
||||
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="http://www.lyrics007.com/lyrics007.js"></script>
|
||||
<script type="text/javascript" >
|
||||
/* 007 - 728x90 - Top - Brand Ads only */
|
||||
cf_page_artist = "The Beatles";
|
||||
cf_page_song = "Lady Madonna";
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript" src="/top.js"></script>
|
||||
<div class="ads_728">
|
||||
<script type="text/javascript">
|
||||
cf_page_genre = "";
|
||||
cf_adunit_id = "39380715";
|
||||
</script>
|
||||
<script src="//srv.clickfuse.com/showads/showad.php"></script></div>
|
||||
<div class="navigate"><a href="http://www.lyrics007.com">Home</a> >> The Beatles - Lady Madonna Lyrics</div>
|
||||
<div class="main">
|
||||
<h1>The Beatles - Lady Madonna Lyrics</h1>
|
||||
<div class="content">
|
||||
<div style="display:block;float:right;padding-top:10px;padding-right:0px;padding-bottom:10px;"><script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-0919305250342516";
|
||||
/* 160x600, created 12/9/08 */
|
||||
google_ad_slot = "8583291572";
|
||||
google_ad_width = 160;
|
||||
google_ad_height = 600;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="//pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script></div>Writer(s):LENNON, JOHN WINSTON / MCCARTNEY, PAUL JAMES<br>Artist: <a href="http://www.lyrics007.com/The%20Beatles%20Lyrics.html">The Beatles Lyrics</a>
|
||||
<br>Popularity: 9957 users have visited this page.<br>Album: Track 22 on The Beatles Collection, Volume 5: Sgt. Pepper's Lonely Hearts Club Band<br>
|
||||
<div itemscope itemtype="http://data-vocabulary.org/Review-aggregate">Rate:
|
||||
<span itemprop="itemreviewed">Lady Madonna</span> gets avg. rating
|
||||
<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating">
|
||||
<span itemprop="average">7.3</span>
|
||||
out of <span itemprop="best">10</span>
|
||||
</span> based on <span itemprop="votes">3</span> ratings. Rate the song now!!!</div>
|
||||
<div class=rating></div><div class=rating></div><div class=rating></div><div class=rating></div><div class=rating></div><div class=rating></div><div class=rating></div><div class=rating></div><div class=rating></div><div class=rating></div><br><br>
|
||||
|
||||
<!-- START: RTM Ad -->
|
||||
<div class="rtm_ad" data-sid="LWOS" data-subtag="ros" data-artist="The Beatles" data-song="Lady Madonna" data-search="">
|
||||
<!-- Note: This fail-safe link will be dynamically replaced -->
|
||||
<a href="http://www.ringtonematcher.com/go/?sid=LWOS" rel="nofollow" target="_blank" style="text-decoration: none;">
|
||||
<img src="//cdn.ringtonematcher.com/images/icons/phones/darkblue_left.gif" style="border-style: none; vertical-align: middle; margin-right: 5px;">
|
||||
<span style="text-decoration: underline; color: red; font: bold 16px Arial; verticalalign: middle;">Send Ringtones to your Cell</span>
|
||||
<img src="//cdn.ringtonematcher.com/images/icons/phones/darkblue_right.gif" style="border-style: none; verticalalign: middle; margin-left: 5px;"></a>
|
||||
</div>
|
||||
<!-- END: RTM Ad -->Lady Madonna, children at your feet<br />
|
||||
Wonder how you manage to make ends meet<br />
|
||||
Who find the money when you pay the rent<br />
|
||||
Did you think that money was heaven sent<br />
|
||||
<br />
|
||||
Friday night arrives without a suitcase<br />
|
||||
Sunday morning creeping like a nun<br />
|
||||
Monday's child has learned to tie his bootlegs<br />
|
||||
See how they run<br />
|
||||
<br />
|
||||
Lady Madonna, baby at your breast<br />
|
||||
Wonders how you manage to feed the rest<br />
|
||||
Pa pa pa pa,<br />
|
||||
See how they run<br />
|
||||
<br />
|
||||
Lady Madonna lying on the bed<br />
|
||||
Listen to the music playing in your head<br />
|
||||
<br />
|
||||
Tuesday afternoon is never ending<br />
|
||||
Wednesday morning papers didn't come<br />
|
||||
Thursday night you stocking needed mending<br />
|
||||
See how they run<br />
|
||||
<br />
|
||||
Lady Madonna, children at your feet<br />
|
||||
Wonder how you manage to make ends meet<br>
|
||||
<!-- START: RTM Ad -->
|
||||
<div class="rtm_ad" data-sid="LWOS" data-subtag="ros" data-artist="The Beatles" data-song="Lady Madonna" data-search="">
|
||||
<!-- Note: This fail-safe link will be dynamically replaced -->
|
||||
<a href="http://www.ringtonematcher.com/go/?sid=LWOS" rel="nofollow" target="_blank" style="text-decoration: none;">
|
||||
<img src="//cdn.ringtonematcher.com/images/icons/phones/darkblue_left.gif" style="border-style: none; vertical-align: middle; margin-right: 5px;">
|
||||
<span style="text-decoration: underline; color: red; font: bold 16px Arial; verticalalign: middle;">Send Ringtones to your Cell</span>
|
||||
<img src="//cdn.ringtonematcher.com/images/icons/phones/darkblue_right.gif" style="border-style: none; verticalalign: middle; margin-left: 5px;"></a>
|
||||
</div>
|
||||
<!-- END: RTM Ad -->
|
||||
<script language='javaScript' type='text/javascript'>
|
||||
document.write("<img src='http://licensing.lyrics007.com/in" + "fo.php?id=1536077&referer=0'>");
|
||||
</script><br>
|
||||
<form action="/correct.php" method="post" id="correctit" target="_blank">
|
||||
<input type="hidden" name="id" value="TXpJNU1UWXg" />
|
||||
</form><br>If you believe the lyrics are not correct you can <a href="#" onclick="document.getElementById('correctit').submit();return false;">Submit Corrections</a> to us<br>Add a comment and share what The Beatles Lady Madonna Lyrics means to you with your friends:<br>
|
||||
<fb:comments href="http://www.lyrics007.com/The%20Beatles%20Lyrics/Lady%20Madonna%20Lyrics.html" num_posts="5" width="640"></fb:comments>
|
||||
Featured lyrics:
|
||||
<ul>
|
||||
<li><a href="/Johnny%20Cash%20Lyrics/Ship%20Those%20Niggers%20Back%20Lyrics.html">Johnny Rebel - Ship Those Niggers Back Lyrics</a>
|
||||
<li><a href="/Demi%20Lovato%20Lyrics/Never%20Been%20Hurt%20Lyrics.html">Demi Lovato - Never Been Hurt Lyrics</a>
|
||||
<li><a href="/Blink-182%20Lyrics/Roller%20Coaster%20Lyrics.html">Blink-182 - Roller Coaster Lyrics</a>
|
||||
<li><a href="/Kenny%20Chesney%20Lyrics/I%20Go%20Back%20Lyrics.html">Kenny Chesney - I Go Back Lyrics</a>
|
||||
<li><a href="/Toto%20Lyrics/Hold%20The%20Line%20Lyrics.html">Toto - Hold the Line Lyrics</a>
|
||||
<li><a href="/Backstreet%20Boys%20Lyrics/The%20One%20Lyrics.html">Backstreet Boys - The One Lyrics</a>
|
||||
<li><a href="/Beyonce%20Lyrics/Standing%20On%20The%20Sun%20Lyrics.html">Beyonce - Standing On The Sun Lyrics</a>
|
||||
<li><a href="/Johnny%20Cash%20Lyrics/A%20Thing%20Called%20Love%20Lyrics.html">Johnny Cash - A Thing Called Love Lyrics</a>
|
||||
<li><a href="/Sugababes%20Lyrics/Too%20Lost%20In%20You%20Lyrics.html">Sugababes - Too Lost in You Lyrics</a>
|
||||
<li><a href="/Green%20Day%20Lyrics/Paranoia%20Lyrics.html">Harvey Danger - Flagpole Sitta Lyrics</a>
|
||||
</ul>Lyrics © Sony/ATV Music Publishing LLC
|
||||
<br><img src="/images/LF.png">
|
||||
</div>
|
||||
<div class="side_bar">
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-0919305250342516";
|
||||
/* 300x250, created 9/18/08 */
|
||||
google_ad_slot = "8367624871";
|
||||
google_ad_width = 300;
|
||||
google_ad_height = 250;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script><br>
|
||||
<form action="/print.php" method="post" id="printit" target="_blank">
|
||||
<input type="hidden" name="id" value="TXpJNU1UWXg" /></form><br><div style="width:300px;">
|
||||
<div style="width: 60px; float: left;"><a class=twitter-share-button href="https://twitter.com/share" data-count="vertical" data-lang="en" data-url="http://www.lyrics007.com/The%20Beatles%20Lyrics/Lady%20Madonna%20Lyrics.html">Tweet</a></div>
|
||||
<div style="width:60px; float:right;"><a href="#" onclick="document.getElementById('printit').submit();return false;" rel="nofollow"><img src="/images/print.gif" border=0></a></div>
|
||||
<div style="width:80px;padding-left:30px; float:left;">
|
||||
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
|
||||
<g:plusone size="tall"></g:plusone></div>
|
||||
<div style="width:70px; flat:left;" class="fb-like" data-href="http://www.lyrics007.com/The%20Beatles%20Lyrics/Lady%20Madonna%20Lyrics.html" data-send="false" data-layout="box_count" data-width="70" data-show-faces="false"></div>
|
||||
</div><br>More lyrics from The Beatles Collection, Volume 5: Sgt. Pepper's Lonely Hearts Club Band album<br>
|
||||
<ol><li><a href="/The%20Beatles%20Lyrics/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band%20Lyrics.html">Sgt. Pepper's Lonely Hearts Club Band Lyrics</a><li><a href="/The%20Beatles%20Lyrics/A%20Little%20Help%20From%20My%20Friends%20Lyrics.html">With a Little Help From My Friends Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Lucy%20in%20the%20Sky%20with%20Diamonds%20Lyrics.html">Lucy in the Sky With Diamonds Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Getting%20Better%20Lyrics.html">Getting Better Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Fixing%20a%20Hole%20Lyrics.html">Fixing a Hole Lyrics</a><li><a href="/The%20Beatles%20Lyrics/She's%20Leaving%20Home%20Lyrics.html">She's Leaving Home Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Being%20For%20The%20Benefit%20Of%20Mr.%20Kite%20Lyrics.html">Being for the Benefit of Mr. Kite Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Within%20You%20Without%20You%20Lyrics.html">Within You Without You Lyrics</a><li><a href="/The%20Beatles%20Lyrics/When%20I'm%20Sixty-four%20Lyrics.html">When I'm Sixty-Four Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Lovely%20Rita%20Lyrics.html">Lovely Rita Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Good%20Morning%20Good%20Morning%20Lyrics.html">Good Morning Good Morning Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band%20(Reprise)%20Lyrics.html">Sgt. Pepper's Lonely Hearts Club Band (reprise) Lyrics</a><li><a href="/The%20Beatles%20Lyrics/A%20Day%20in%20Life%20Lyrics.html">A Day in the Life Lyrics</a><li><a href="/The%20Beatles%20Lyrics/I%20Want%20To%20Hold%20Your%20Hand%20Lyrics.html">I Want to Hold Your Hand Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Long%20Tall%20Sally%20Lyrics.html">Long Tall Sally Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Yes%20It%20Is%20Lyrics.html">Yes It Is Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Day%20Tripper%20Lyrics.html">Day Tripper Lyrics</a><li><a href="/The%20Beatles%20Lyrics/We%20Can%20Work%20It%20Out%20Lyrics.html">We Can Work It Out Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Paperback%20Writer%20Lyrics.html">Paperback Writer Lyrics</a><li><a href="/The%20Beatles%20Lyrics/The%20Inner%20Light%20Lyrics.html">The Inner Light Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Revolution%20Lyrics.html">Revolution Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Lady%20Madonna%20Lyrics.html">Lady Madonna Lyrics</a><li><a href="/The%20Beatles%20Lyrics/Hey%20Jude%20Lyrics.html">Hey Jude Lyrics</a></ol><script>
|
||||
/* Lyrics007 - 300x250 - Brand Ads Only */
|
||||
cf_page_artist = "The Beatles";
|
||||
cf_page_song = "Lady Madonna";
|
||||
cf_page_genre = "";
|
||||
cf_adunit_id = "39380716";
|
||||
</script>
|
||||
<script src="//srv.clickfuse.com/showads/showad.php"></script>
|
||||
<br><br>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bottom">Lyrics007 gets licensed to display lyrics and pay the lyrics writers through LyricFind. The most of song titles are calibrated according to wikipedia</div>
|
||||
<div class="copyright"> ©COPYRIGHT 2012, LYRICS007.COM, ALL RIGHTS RESERVED.</div>
|
||||
<div id="myDiv"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
508
test/rsrc/lyrics/lyricscom/ladymadonnalyricsthebeatleshtml.txt
Normal file
508
test/rsrc/lyrics/lyricscom/ladymadonnalyricsthebeatleshtml.txt
Normal file
|
|
@ -0,0 +1,508 @@
|
|||
|
||||
<!doctype html>
|
||||
<html xmlns:lyricscom="http://www.lyrics.com/ns#"><head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="verify-v1" content="k1br6sikEUd0k3G96/qOGGoQOfCbjtZUn+oT10GDsHc=" />
|
||||
<meta name="google-site-verification" content="k2Lz_Wol4_l8SsCzaUj22oqAlCeKiY2L0tc0_-S0kUI" />
|
||||
<meta property="og:site_name" content="Lyrics.com" />
|
||||
<meta property="og:title" content="The Beatles - Lady Madonna Lyrics" />
|
||||
<meta property="og:type" content="song" />
|
||||
<meta property="og:image" content="http://image01.lyrics.com/artists/pic200/drP900/P970/p97040d4dv8.jpg" />
|
||||
<meta property="og:url" content="http://www.lyrics.com/lady-madonna-lyrics-the-beatles.html" />
|
||||
<meta property="og:description" content="Lady Madonna, children at your feet
|
||||
Wonder how you manage to make ends meet
|
||||
Who find the money when you pay the rent
|
||||
Did you think that money was heaven sent
|
||||
|
||||
Friday night arrives without a suitc.." />
|
||||
<meta property="lyrics:T_ID" content="T 232880" />
|
||||
<meta property="fb:app_id" content="121433871232565" />
|
||||
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico">
|
||||
<meta name="keywords" content="Lady Madonna lyrics, The Beatles lyrics, Lady Madonna video, The Beatles video, lyrics, music, lyric, songtext, words to songs, lyrics search, The Beatles Lady Madonna lyrics" />
|
||||
<meta name="description" content="The Beatles Lady Madonna lyrics: Lady Madonna, children at your feet
|
||||
Wonder how you manage to make ends meet
|
||||
Who find the money when you pay the rent
|
||||
Did you think that money was heaven sent
|
||||
|
||||
Friday night arrives without a suitc" />
|
||||
<meta name="robots" content="all" />
|
||||
<meta name="server" content="127.0.0.1" />
|
||||
<title>The Beatles - Lady Madonna Lyrics</title>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="/js/mini/header.js?combined=prototype,overlay,common,lyrics,users,scriptaculous"></script>
|
||||
<script type="text/javascript" src="/js/jquery.min.js"></script>
|
||||
<script type="text/javascript">var $j = jQuery.noConflict();</script>
|
||||
|
||||
|
||||
|
||||
<link href="/css/mini/main.v2.1005.css?20131003-3" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!--[if IE 7]>
|
||||
<link href="/stylesheets/ie7.css" type="text/css" rel="stylesheet" />
|
||||
<![endif]-->
|
||||
<!--[if lt IE 7.]>
|
||||
<script defer type="text/javascript" src="/js/pngfix.js"></script>
|
||||
<![endif]-->
|
||||
<!--[if IE 6]>
|
||||
<link href="/stylesheets/ie6.css" type="text/css" rel="stylesheet" />
|
||||
<script src="/js/ie6.js" type="text/javascript"></script>
|
||||
<script src="/js/pngfix.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<!-- artists lyric --><!-- SHOULD SHOW LYRICS (T 232880) --><!-- CANNOT FIND RELATED LYRICS --> <!-- LYRICS FIND -->
|
||||
|
||||
<!-- ### Put all this in the head of your page ### -->
|
||||
|
||||
<style type="text/css" media="screen">
|
||||
.PRINTONLY {display:none;visibility:hidden;}
|
||||
</style>
|
||||
<style type="text/css" media="print">
|
||||
.SCREENONLY {display:none;visibility:hidden;}
|
||||
</style>
|
||||
|
||||
<script language="JavaScript1.2">
|
||||
var selectdisabled = true;
|
||||
var omitformtags= new Array();
|
||||
omitformtags[0] = "input";
|
||||
omitformtags[1] = "select";
|
||||
omitformtags[2] = "textarea";
|
||||
omitformtags[3] = "radio";
|
||||
omitformtags[4] = "checkbox";
|
||||
|
||||
function disableselect(e) {
|
||||
var formObj = false;
|
||||
for (var i = 0; i < omitformtags.length; i++){
|
||||
if (e.target.tagName.toLowerCase() == omitformtags[i]){
|
||||
formObj = true;
|
||||
}
|
||||
}
|
||||
if (!formObj){
|
||||
return false;
|
||||
}
|
||||
}
|
||||
function reEnable(){
|
||||
return true;
|
||||
}
|
||||
|
||||
if (typeof document.onselectstart != "undefined"){
|
||||
document.onselectstart = new Function ("return false");
|
||||
}else{
|
||||
document.onmousedown=disableselect;
|
||||
document.onmouseup=reEnable;
|
||||
}
|
||||
|
||||
</script>
|
||||
<script language="javascript">
|
||||
/* for Internet Explorer */
|
||||
/*@cc_on @*/
|
||||
/*@if (@_win32)
|
||||
document.write("<script defer src=/js/ie_onload.js><"+"/script>");
|
||||
/*@end @*/
|
||||
</script>
|
||||
|
||||
|
||||
<!-- ### END ### -->
|
||||
|
||||
<!-- END OF LYRICS FIND -->
|
||||
|
||||
|
||||
<!-- END OF PRESENCE BAR CSS -->
|
||||
|
||||
|
||||
<script src="http://adexcite.com/ads/video/controller.php?eid=15200"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body onLoad="; " id="bodytag" class="bodyContent userbg" oncontextmenu="return false;" onkeydown="if(event.ctrlKey){return false;}" >
|
||||
<div id="overlay" class="hide">
|
||||
<div class="close"><a href="javascript:void(0);" onClick="ol_close();">close</a></div>
|
||||
<div id="overlay_content"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="mainwrappercontent">
|
||||
<div id="topnav">
|
||||
<div class="topnavleft">
|
||||
|
||||
<div class="logo_div"><a href="/" class="none"><img src="/images/new/logo_sm.png" class="logo" alt="Lyrics.com" border="0" /></a></div>
|
||||
<div class="search_bar_div">
|
||||
<form action='/search.php' method='post' id='search_form' onsubmit='return submit_search_form();'> <input id="googlecseinput" autocomplete="off" type="text" name="keyword" maxlength="60" value="" class="gray fields" onfocus="this.className='fields';if(this.value=='') this.value='';" /><input type="hidden" name="what" id="what" value="all" /><input type="submit" name="search_btn" id="search_btn" value="Search" />
|
||||
<script type="text/javascript" src="//www.google.com/jsapi"></script>
|
||||
<script type="text/javascript">
|
||||
google.load('search', '1', {language : 'en', style : google.loader.themes.V2_DEFAULT});google.setOnLoadCallback(function() {
|
||||
google.search.CustomSearchControl.attachAutoCompletionWithOptions(
|
||||
'002429808855133964552:odv2ki7puam',
|
||||
document.getElementById('googlecseinput'),
|
||||
'search_form'
|
||||
)});
|
||||
</script>
|
||||
<!-- End of autocomplete -->
|
||||
</form> </div>
|
||||
|
||||
<!-- SEARCH -->
|
||||
<div class="search_box_div">
|
||||
|
||||
|
||||
<form action='/search.php' method='get' onsubmit='return searchAjax();'>
|
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
<a href='/' >Home</a>
|
||||
<a href='/artists/start/num'>Browse</a>
|
||||
|
||||
<a href='/submit'>Submit</a>
|
||||
<a href='/login'>Login</a>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<br style="clear:both;" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div id="top_ads_space_empty"> </div>
|
||||
<div id="wrappercontent">
|
||||
<div id="wrapper_bg">
|
||||
<div id="wrapper">
|
||||
|
||||
<div class="inner">
|
||||
<div id="content">
|
||||
<!--<div id="content">--><script type="text/javascript" src="/js/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js"></script>
|
||||
<script type="text/javascript" src="/js/mini/slimScroll.js"></script>
|
||||
<script type="text/javascript" src="/js/mini/track_comments.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
</script>
|
||||
<link href="/css/mini/profile-layout.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/css/mini/lyrics.css?20131003-2" rel="stylesheet" type="text/css" />
|
||||
|
||||
<div id="outer_profile">
|
||||
<div id="pic_ads">
|
||||
<a href="thebeatles"><img src='http://image01.lyrics.com/artists/pic200/drP900/P970/p97040d4dv8.jpg' width='160' border='1' alt='thebeatles' /></a>
|
||||
<br />
|
||||
<div id="google_ads_160x600">
|
||||
<script type="text/javascript"><!--
|
||||
|
||||
google_ad_client = "ca-pub-3044889097204573";
|
||||
|
||||
/* 160x600, created 9/9/08 */
|
||||
|
||||
google_ad_slot = "3524097094";
|
||||
|
||||
google_ad_width = 160;
|
||||
|
||||
google_ad_height = 600;
|
||||
|
||||
//-->
|
||||
|
||||
</script>
|
||||
|
||||
<script type="text/javascript"
|
||||
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
<div id="profile">
|
||||
<div id="leftcontent">
|
||||
<script type="text/javascript">
|
||||
function toggleYouTube()
|
||||
{
|
||||
var youtube = '<iframe src="http://www.pages.com/youtube.php?T_ID=T 232880&width=420&height=236" width="420" height="236" frameborder="0"></iframe>';
|
||||
$('adbox').innerHTML = youtube;
|
||||
}
|
||||
</script>
|
||||
<div id="adbox">
|
||||
<!--The Beatles - Lady Madonna-->
|
||||
<div id="fake_youtube" class="image">
|
||||
<div id="fake_image"><a href="#" onclick="return toggleYouTube();"><img src="http://img.youtube.com/vi/gNyHymEhZmg/0.jpg" width="420" height="236" /></a></div>
|
||||
<div id="fake_play_btn"><a href="#" onclick="return toggleYouTube();"><img src="/images/play_overlay_white.png" /></a></div>
|
||||
</div>
|
||||
|
||||
</div><br />
|
||||
<table width="420" cellpadding="0" cellspacing="0" class="playlist-btn">
|
||||
<tr>
|
||||
<td width="396">
|
||||
<a href='http://www.lyrics.com/login_redirect.php?u=%2Flady-madonna-lyrics-the-beatles.html' class='silver_btn_left' onclick="alert('Please login first to add this song into your playlist!');" title='Add to playlist'>Add to Playlist</a> </td>
|
||||
<td width="24">
|
||||
<a class="silver_btn_right" href="javascript:void(0);" onclick="flagVideo('T 232880');"> </a>
|
||||
</td>
|
||||
</table>
|
||||
<br />
|
||||
<div class="leftbox">
|
||||
<div class="title">
|
||||
<div class="left">Suggestions</div>
|
||||
<div class="right"> </div>
|
||||
<br style="clear:both" />
|
||||
</div>
|
||||
<div class="content">
|
||||
|
||||
<div class="row" id="album_list">
|
||||
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
getTopSongsMore('/home/similarsongs_left_start/T 232880/0');
|
||||
</script>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='pw-widget pw-size-medium'>
|
||||
|
||||
<a class='pw-button-googleplus'></a>
|
||||
|
||||
<a class='pw-button-facebook'></a>
|
||||
|
||||
<a class='pw-button-twitter'></a>
|
||||
|
||||
<a class='pw-button-email'></a>
|
||||
|
||||
<a class='pw-button-post'></a>
|
||||
|
||||
</div>
|
||||
|
||||
<script src='http://i.po.st/static/script/post-widget.js#publisherKey=ahap795vm5td5n4ua63f' type='text/javascript'></script>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="rightcontent">
|
||||
<div class="profile_name_and_status">
|
||||
<h1 id="profile_name">Lady Madonna<br /><span class="small">by <a href="/thebeatles">The Beatles</a></span></h1>
|
||||
<div class="fblike_btn">
|
||||
<iframe src="http://www.facebook.com/plugins/like.php?app_id=257638770934394&href=http%3A%2F%2Fwww.lyrics.com%2F%2Flady-madonna-lyrics-the-beatles.html&send=false&layout=button_count&width=90&show_faces=true&action=like&colorscheme=light&font&height=21" scrolling="no" frameborder="0" allowTransparency="true"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tabs_wrapper">
|
||||
|
||||
|
||||
<hr size="1" /><br />
|
||||
<div id="tab_content">
|
||||
|
||||
|
||||
|
||||
<div id="lyric_tab_content" class="tab_content">
|
||||
|
||||
|
||||
<div class="artist_content">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ringtone_area"><strong><img src="/images/phone__left.gif" border='0' />
|
||||
<a href="http://www.ringtonematcher.com/go/?sid=PALYros&&artist=The+Beatles&song=Lady+Madonna" rel="nofollow" target="_blank">
|
||||
Send "Lady Madonna" Ringtone to your Cell
|
||||
</a> <img src="/images/phone__right.gif" border='0' /></strong></div> <!-- LYRIC REVISION FORM -->
|
||||
<div id="revision_form" class="hide">
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!-- CURRENT LYRIC -->
|
||||
<div id="lyrics_outer">
|
||||
|
||||
<div id="lyric_space">
|
||||
Lady Madonna, children at your feet<br />
|
||||
Wonder how you manage to make ends meet<br />
|
||||
Who find the money when you pay the rent<br />
|
||||
Did you think that money was heaven sent<br />
|
||||
<br />
|
||||
Friday night arrives without a suitcase<br />
|
||||
Sunday morning creeping like a nun<br />
|
||||
Monday's child has learned to tie his bootlegs<br />
|
||||
See how they run<br />
|
||||
<br />
|
||||
Lady Madonna, baby at your breast<br />
|
||||
Wonders how you manage to feed the rest<br />
|
||||
Pa pa pa pa,<br />
|
||||
See how they run<br />
|
||||
<br />
|
||||
Lady Madonna lying on the bed<br />
|
||||
Listen to the music playing in your head<br />
|
||||
<br />
|
||||
Tuesday afternoon is never ending<br />
|
||||
Wednesday morning papers didn't come<br />
|
||||
Thursday night you stocking needed mending<br />
|
||||
See how they run<br />
|
||||
<br />
|
||||
Lady Madonna, children at your feet<br />
|
||||
Wonder how you manage to make ends meet<br />---<br />Lyrics powered by <a href="http://www.lyricfind.com" target="_blank" rel="nofollow" style="color:#000; text-decoration:none; cursor:text">LyricFind</a><br />
|
||||
written by LENNON, JOHN WINSTON / MCCARTNEY, PAUL JAMES<br />
|
||||
Lyrics © Sony/ATV Music Publishing LLC<!-- RESPONSE CODE: 101 ** 232880 --><!-- T_ID: T 232880 --> </div>
|
||||
|
||||
</div>
|
||||
<!-- LYRIC REVISION -->
|
||||
|
||||
|
||||
<div class="ringtone_area"><strong><img src="/images/phone__left.gif" border='0' />
|
||||
<a href="http://www.ringtonematcher.com/go/?sid=PALYros&artist=The+Beatles&song=Lady+Madonna" rel="nofollow" target="_blank">
|
||||
Send "Lady Madonna" Ringtone to your Cell
|
||||
</a> <img src="/images/phone__right.gif" border='0' /></strong></div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="fb_comments">
|
||||
<div id="fb-root"></div>
|
||||
<script>(function(d, s, id) {
|
||||
var js, fjs = d.getElementsByTagName(s)[0];
|
||||
if (d.getElementById(id)) return;
|
||||
js = d.createElement(s); js.id = id;
|
||||
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=121433871232565";
|
||||
fjs.parentNode.insertBefore(js, fjs);
|
||||
}(document, 'script', 'facebook-jssdk'));</script>
|
||||
<div class="fb-comments" data-href="http://www.lyrics.com/lady-madonna-lyrics-the-beatles.html" data-num-posts="5" data-width="465"></div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
Event.observe(window, 'load', function() {
|
||||
$$('#fb_comments iframe').each(function(elm)
|
||||
{
|
||||
elm.setAttribute('src', $(elm).readAttribute('src') + '&order_by=reverse_time');
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
<br style="clear:both;" />
|
||||
</div>
|
||||
</div><!-- #outer_profile -->
|
||||
<script type="text/javascript">
|
||||
var lyricform = false;
|
||||
function showRevisionForm()
|
||||
{
|
||||
if(lyricform)
|
||||
{
|
||||
$('lyrics_outer').className = 'hide';
|
||||
$('revision_form').className = 'show';
|
||||
$('revised_lyric').focus();
|
||||
$('bodytag').setAttribute('onkeydown','return true;');
|
||||
$('bodytag').setAttribute('oncontextmenu','if(event.ctrlKey){return true;}');
|
||||
if (typeof document.onselectstart != "undefined"){
|
||||
document.onselectstart = reEnable;
|
||||
}else{
|
||||
document.onmousedown=reEnable;
|
||||
document.onmouseup=reEnable;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$('revision_form').innerHTML = "<img src='/images/ajax-loader.gif' /> Loading Form ... ";
|
||||
var url = "/artists/getLyricForm";
|
||||
var params = "tid=T 232880";
|
||||
new Ajax.Request(url, { method : "post", parameters: params, onSuccess: showLyricFormByAjax });
|
||||
}
|
||||
recommended_autoplay_status = false;
|
||||
}
|
||||
function add_lyric_comment()
|
||||
{
|
||||
var params = { 'T_ID' : 'T 232880', 'comment' : $('lyric_comment').value };
|
||||
var url = '/ajax/lyrics/add_comment';
|
||||
if(trim($('lyric_comment').value) == "") { alert("Please enter your comment."); return false; }
|
||||
else
|
||||
{
|
||||
$('lyric_comment').disabled = true;
|
||||
$('lyric_comment_submit_btn').innerHTML = "Submitting...";
|
||||
$('lyric_comment_submit_btn').disabled = true;
|
||||
}
|
||||
new Ajax.Request(url, { parameters: params, method: 'post', onComplete: function(resp)
|
||||
{
|
||||
window.location = '/user/profile/';
|
||||
}});
|
||||
return false;
|
||||
}
|
||||
Event.observe(window,'load',function() {
|
||||
});
|
||||
|
||||
</script>
|
||||
<br class="clear" />
|
||||
</div><!-- #content -->
|
||||
</div><!-- #inner -->
|
||||
|
||||
</div><!-- #wrapper -->
|
||||
|
||||
|
||||
</div><!-- #wrapper_bg -->
|
||||
</div><!-- #wrappercontent-->
|
||||
|
||||
|
||||
|
||||
<div class="bottom_wrapper">
|
||||
<div class="bottom_container">
|
||||
<!-- ValueClick Media 468x60 and 728x90 Banner CODE for Lyrics.com -->
|
||||
<script src="http://cdn.fastclick.net/js/adcodes/pubcode.min.js"></script><script type="text/javascript">document.write('<scr' + 'ipt type="text/javascript">(function () {try{VCM.media.render({sid:25384,media_id:1,media_type:5,version:"1.1"});} catch(e){document.write(\'<scr\' + \'ipt type="text/javascript" src="http://media.fastclick.net/w/get.media?sid=25384&m=1&tp=5&d=j&t=n&exc=1"></scr\' + \'ipt>\');}}());</scr' + 'ipt>');</script><noscript><a href="http://media.fastclick.net/w/click.here?sid=25384&m=1&c=1" target="_blank"><img src="http://media.fastclick.net/w/get.media?sid=25384&m=1&tp=5&d=s&c=1&vcm_acv=1.1" width=728 height=90 border=1></a></noscript>
|
||||
<!-- ValueClick Media 468x60 and 728x90 Banner CODE for Lyrics.com -->
|
||||
|
||||
</div>
|
||||
|
||||
<table cellspacing="0" cellpadding="0" width="920" class="footer" align="center" style="margin-top:15px;">
|
||||
<tr>
|
||||
<td width="450" align="left">
|
||||
<a href='/about/contact'>Contact Us</a> | <a href='/about/terms_of_use'>Terms of Use</a> | <a href='/about/privacy'>Privacy Policy</a> | <a href="/user/api/docs/">Developers</a>
|
||||
</td>
|
||||
<td style="text-align:right;">
|
||||
© 2008 Lyrics.com | All rights reserved. | 0.2153()<!-- --> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div><!-- #mainwrappercontent -->
|
||||
<!-- Google Analytics and other scripts here -->
|
||||
<script type="text/javascript">
|
||||
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
||||
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
var pageTracker = _gat._getTracker("UA-5592928-3");
|
||||
pageTracker._trackPageview();
|
||||
</script>
|
||||
|
||||
<!-- start Vibrant Media IntelliTXT script section -->
|
||||
<script type="text/javascript" src="http://lyrics.us.intellitxt.com/intellitxt/front.asp?ipid=22892"></script>
|
||||
<!-- end Vibrant Media IntelliTXT script section -->
|
||||
|
||||
<!-- Begin comScore Tag -->
|
||||
<script type="text/javascript">
|
||||
document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js'%3E%3C/script%3E"));
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
COMSCORE.beacon({
|
||||
c1:2,
|
||||
c2:"6035055",
|
||||
c3:"",
|
||||
c4:location.href,
|
||||
c5:"",
|
||||
c6:"",
|
||||
c15:""
|
||||
});
|
||||
</script>
|
||||
<noscript>
|
||||
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6035055&c3=&c4=&c5=&c6=&c15=&cj=1" />
|
||||
</noscript>
|
||||
<!-- End comScore Tag -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,812 @@
|
|||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
|
||||
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>Lilly Wood & The Prick - Hey It's Ok Lyrics</title>
|
||||
<link href="/files/aa2.css" type=text/css rel=stylesheet>
|
||||
<meta name="description" content="Lilly Wood & The Prick Hey It's Ok Lyrics. Hey It's Ok lyrics performed by Lilly Wood & The Prick: Mama, Papa, please forget the times <br />
|
||||
I wet my bed <br />
|
||||
I swear not to do it again <br />
|
||||
Please forgive the way I looked <br />
|
||||
" />
|
||||
<meta name="keywords" content="hey it's ok,lilly wood & the prick,lyrics,words,song" />
|
||||
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="language" content="en" />
|
||||
<meta property="og:title" content="Lilly Wood & The Prick - Hey It's Ok Lyrics"/>
|
||||
<meta property="og:type" content="song"/>
|
||||
<meta property="og:url" content="http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html"/>
|
||||
<meta property="og:site_name" content="www.lyricsmania.com"/>
|
||||
<meta property="og:description" content="Lilly Wood & The Prick Hey It's Ok Lyrics. Hey It's Ok lyrics performed by Lilly Wood & The Prick: Mama, Papa, please forget the times <br />
|
||||
I wet my bed <br />
|
||||
I swear not to do it again <br />
|
||||
Please forgive the way I looked <br />
|
||||
">
|
||||
<meta property="og:language" content="en"/>
|
||||
<meta property="fb:admins" content="100001599431689" />
|
||||
<meta http-equiv="expires" content="0" />
|
||||
<meta name="classification" content="Lilly Wood & The Prick lyrics" />
|
||||
<link href="http://www.lyricsmania.com/xml/last100album.xml" rel="alternate" type="application/rss+xml" title="Last 100 Albums" />
|
||||
<link href="http://www.lyricsmania.com/xml/last100artists.xml" rel="alternate" type="application/rss+xml" title="Last 100 Artists" />
|
||||
<link href="http://www.lyricsmania.com/xml/last100lyrics.xml" rel="alternate" type="application/rss+xml" title="Last 150 Lyrics" />
|
||||
<script type="text/javascript" src="/js/lm_js.js"></script>
|
||||
<script type="text/javascript" src="http://partner.googleadservices.com/gampad/google_service.js">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
GS_googleAddAdSenseService("ca-pub-3687873374834629");
|
||||
GS_googleEnableAllServices();
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
GA_googleUseIframeRendering();
|
||||
GA_googleAddAttr("j_title", "Hey It's Ok");
|
||||
GA_googleAddAttr("j_artist", "Lilly Wood & The Prick");
|
||||
</script>
|
||||
<link rel="image_src" href="/files/toplogo4.jpg" />
|
||||
<script language="javascript" type="text/javascript" src="/copy.js"></script>
|
||||
<script type="text/javascript" src="https://apis.google.com/js/plusone.js">
|
||||
{lang: 'en'}
|
||||
</script>
|
||||
<link rel="canonical" href="http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html">
|
||||
|
||||
<link rel="alternate" hreflang="it" href="http://www.testimania.com/" />
|
||||
<link rel="alternate" hreflang="es" href="http://www.letrasmania.com/" />
|
||||
<link rel="alternate" hreflang="fr" href="http://www.parolesmania.com/" />
|
||||
<link rel="alternate" hreflang="de" href="http://www.songtextemania.com/" />
|
||||
|
||||
<script type="text/javascript">
|
||||
window.___gcfg = {lang: 'en'};
|
||||
(function()
|
||||
{var po = document.createElement("script");
|
||||
po.type = "text/javascript"; po.async = true;po.src = "https://apis.google.com/js/plusone.js";
|
||||
var s = document.getElementsByTagName("script")[0];
|
||||
s.parentNode.insertBefore(po, s);
|
||||
})();</script>
|
||||
<script type="text/javascript">
|
||||
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-435431-1']);
|
||||
_gaq.push(['_setDomainName', 'lyricsmania.com']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
|
||||
</script>
|
||||
<script>
|
||||
cf_page_artist = "Lilly Wood & The Prick";
|
||||
cf_page_song = "Hey It's Ok";
|
||||
cf_page_genre = "";
|
||||
cf_adunit_id = "39381134";
|
||||
cf_flex = true;
|
||||
</script>
|
||||
<script src="//srv.clickfuse.com/showads/showad.php"></script>
|
||||
<script type="text/javascript">
|
||||
function toolbar(id_el,id_eldue) {
|
||||
el = document.getElementById(id_el);
|
||||
eldue = document.getElementById(id_eldue);
|
||||
_display = (el.style.display);
|
||||
if (_display == "none") {
|
||||
eldue.style.bottom = "-60px";
|
||||
eldue.style.display = "none";
|
||||
el.style.display = "block";
|
||||
setTimeout(function(){slide(el)},2);
|
||||
}
|
||||
else {
|
||||
el.style.display = "none";
|
||||
eldue.style.display = "block";
|
||||
}
|
||||
}
|
||||
function slide(id_el) {
|
||||
if(!id_el.id) {
|
||||
el = document.getElementById(id_el);
|
||||
}
|
||||
_bottom = parseInt(el.style.bottom);
|
||||
if (_bottom < '0') {
|
||||
el.style.bottom = (_bottom+2)+"px";
|
||||
setTimeout(function(){slide(id_el)},5);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script type='text/javascript' language='javascript'>
|
||||
var cw = 1003; // specify content width
|
||||
var cp = 10; // specify the content padding if desired
|
||||
try{
|
||||
var s=document.createElement('script');
|
||||
s.id='specific_rome_js';
|
||||
s.type='text/javascript';
|
||||
s.src='http://rome.specificclick.net/rome/rome.js?l=31116&t=j&cw='+cw+'&cp='+cp;
|
||||
document.body.appendChild(s);
|
||||
}catch(e){}
|
||||
</script></head>
|
||||
<body id=page_bg>
|
||||
|
||||
<h1>Hey It's Ok Lyrics</h1>
|
||||
<div class=center align=center style="margin-bottom: 49px;">
|
||||
<!-- Inizio Header -->
|
||||
<div id=aa>
|
||||
<div id=aa1><a href="/" title="lyrics"><img src="/blank.gif" alt="lyrics" border="0" height="95" width="242"></a></div>
|
||||
<div id=aa2>
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-4710666039840396";
|
||||
google_ad_slot = "4552504620/6029212500";
|
||||
google_ad_width = 728;
|
||||
google_ad_height = 90;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="//pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script>
|
||||
</div>
|
||||
<div id=aa3></div>
|
||||
</div>
|
||||
<!-- Fine Header -->
|
||||
|
||||
<div class=clr></div>
|
||||
|
||||
<div id=sx>
|
||||
<div id=dx>
|
||||
|
||||
<div id=tabs>
|
||||
<div id=tabssx>
|
||||
<div id=tabsdx>
|
||||
<div id=tabber>
|
||||
<ul>
|
||||
<li class=blue><a href="http://www.lyricsmania.com/">Lyrics</a></li>
|
||||
<li class=blue><a href="/soundtrackslyrics.html">Soundtrack Lyrics</a></li>
|
||||
<li class=blue><a href="/topartists.html">Top 100 Artists</a></li>
|
||||
<li class=blue><a href="/toplyrics.html">Top 100 Lyrics</a></li>
|
||||
<li class=blue><a href="/last100artists.html">Last 100 artists</a></li>
|
||||
<li class=blue><a href="/last100album.html">Last 100 albums</a></li>
|
||||
<li class=blue><a href="/add.html">Submit Lyrics</a></li>
|
||||
|
||||
<li>
|
||||
<form class="logina" action="http://my.lyricsmania.com/login.php?destpage=/hey_its_ok_lyrics_lilly_wood_and_the_prick.html">
|
||||
<input class="formino" type="text" name="username" size="9" maxlength="18" value="Username" onFocus="if(this.value == 'Username') {this.value = '';}" onBlur="if (this.value == '') {this.value = 'Username';}" />
|
||||
<input class="formino" type="password" name="password" size="9" maxlength="18" value="Password" onFocus="if(this.value == 'Password') {this.value = '';}" onBlur="if (this.value == '') {this.value = 'Password';}" />
|
||||
<input class="loginb" type="submit" value="Login"> or
|
||||
</form>
|
||||
</li>
|
||||
<li class=beige><a href="http://my.lyricsmania.com/signup.html">Signup</a> </li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class=clr></div>
|
||||
|
||||
<!-- Inizio Blocco Contenuti -->
|
||||
<div id=topmodule></div>
|
||||
<div id=whitebox>
|
||||
<div id=whitebox_t>
|
||||
<div id=whitebox_tl>
|
||||
<div id=whitebox_tr></div></div></div>
|
||||
<div id=whitebox_m>
|
||||
<div id=area>
|
||||
|
||||
<div id=maincolumn2>
|
||||
|
||||
<div id=albums>
|
||||
|
||||
<table cellpadding="2" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<form action="/searchnew.php">
|
||||
<input id="s" type="text" name="k" onclick="if (this.value == 'Find Artist and/or Lyrics') this.value=''" value="Find Artist and/or Lyrics" onblur="if(this.value == '') this.value='Find Artist and/or Lyrics'" value="" style="margin:0;padding-left:2px;color:#35456e;font-size:22px;text-weight:bold;width:380px;height:30px;border: 2px solid #35456e;">
|
||||
</td>
|
||||
<td>
|
||||
<input type="image" src="/sbut.png" value="Search!">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td noWrap align=center>
|
||||
<font style="color:#1b57b1; font-size: 1.0em !important;">Browse :</font>
|
||||
<a href="/lyrics/num.html">0-9</a>
|
||||
<a href="/lyrics/A.html">A</a>
|
||||
<a href="/lyrics/B.html">B</a>
|
||||
<a href="/lyrics/C.html">C</a>
|
||||
<a href="/lyrics/D.html">D</a>
|
||||
<a href="/lyrics/E.html">E</a>
|
||||
<a href="/lyrics/F.html">F</a>
|
||||
<a href="/lyrics/G.html">G</a>
|
||||
<a href="/lyrics/H.html">H</a>
|
||||
<a href="/lyrics/I.html">I</a>
|
||||
<a href="/lyrics/J.html">J</a>
|
||||
<a href="/lyrics/K.html">K</a>
|
||||
<a href="/lyrics/L.html">L</a>
|
||||
<a href="/lyrics/M.html">M</a>
|
||||
<a href="/lyrics/N.html">N</a>
|
||||
<a href="/lyrics/O.html">O</a>
|
||||
<a href="/lyrics/P.html">P</a>
|
||||
<a href="/lyrics/Q.html">Q</a>
|
||||
<a href="/lyrics/R.html">R</a>
|
||||
<a href="/lyrics/S.html">S</a>
|
||||
<a href="/lyrics/T.html">T</a>
|
||||
<a href="/lyrics/U.html">U</a>
|
||||
<a href="/lyrics/V.html">V</a>
|
||||
<a href="/lyrics/W.html">W</a>
|
||||
<a href="/lyrics/X.html">X</a>
|
||||
<a href="/lyrics/Y.html">Y</a>
|
||||
<a href="/lyrics/Z.html">Z</a>
|
||||
<font style="color:#1b57b1; font-size: 1.0em !important;"> | </font> <a href="/all.html">ALL</a>
|
||||
<br /><br />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class=thinbox>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2>Hey It's Ok lyrics</h2>
|
||||
<h3>Lilly Wood & The Prick</h3>
|
||||
<br />
|
||||
<a href="/correct.php?id=1069996"><img src="/files/correct.png" width=16 height=16 alt="Correct Hey It's Ok Lyrics" border=0> Correct these lyrics</a><br />
|
||||
<a href="/print/1069996.html" rel="nofollow" onclick="javascript: pageTracker._trackPageview('/print-testo');"><img src="/files/print.png" width=16 height=16 alt="Print Hey It's Ok Lyrics" border=0> Print these lyrics</a>
|
||||
<br />
|
||||
<a href="#commentlyrics" rel="nofollow"><img src="/images/pencil2.png" width=16 height=16 alt="Comment Lyrics" border=0>Comment lyrics</a><br>
|
||||
|
||||
<a href="http://del.icio.us/post?url=http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html" rel="nofollow" target="_blank" title="Share this page on Del.icio.us"><img src="/images/deliciousoff.png" border="0"></a>
|
||||
<a href="http://www.google.com/bookmarks/mark?op=edit&bkmk=http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html&title=LYRICS" rel="nofollow" target="_blank" title="Share this page on Google Bookmarks"><img src="/images/googleoff.png" border="0"></a>
|
||||
<a href="http://digg.com/submit?phase=2&url=http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html" rel="nofollow" target="_blank" title="Share this page on Digg"><img src="/images/diggoff.png" border="0"></a>
|
||||
<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html" rel="nofollow" target="_blank" title="Share this page on Myspace"><img src="/images/myspaceoff.png" border="0"></a>
|
||||
|
||||
</td>
|
||||
<td width="180" valign="top">
|
||||
|
||||
<div class="radio">
|
||||
<span class="charts">Rate this song:</span>
|
||||
<form method="post" name="addme" action="http://my.lyricsmania.com/vote.html">
|
||||
<input type="hidden" name="id_artista" value="57989">
|
||||
<input type="hidden" name="id_testo" value="1069996">
|
||||
|
||||
<input type="radio" name="voto" value="1" onclick="this.form.submit()" />1
|
||||
<input type="radio" name="voto" value="2" onclick="this.form.submit()" />2
|
||||
<input type="radio" name="voto" value="3" onclick="this.form.submit()" />3
|
||||
<input type="radio" name="voto" value="4" onclick="this.form.submit()" />4
|
||||
<input type="radio" name="voto" value="5" onclick="this.form.submit()" />5
|
||||
|
||||
</form>
|
||||
<div class="notes">
|
||||
No votes yet, be the first!
|
||||
<br/><br/>
|
||||
<a href="http://my.lyricsmania.com/playlist/add/.html"><img src="/files/addfavorites.png" border="0"></a> <a href="http://my.lyricsmania.com/playlist/add/1069996.html">Add to my playlist</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class=clr></div>
|
||||
|
||||
<table width=100%><tr><td>
|
||||
Artist: <b><a href="http://www.lyricsmania.com/lilly_wood_and_the_prick_lyrics.html" title="Lilly Wood & The Prick lyrics">Lilly Wood & The Prick lyrics</a></b><br>
|
||||
Title: Hey It's Ok</td>
|
||||
<td width=70>
|
||||
|
||||
<iframe src="http://www.facebook.com/plugins/like.php?href=http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html&send=false&layout=box_count&width=100&show_faces=false&action=like&colorscheme=light&font&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:85px; height:65px;" allowTransparency="true"></iframe>
|
||||
</td>
|
||||
<td width=70>
|
||||
<a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="lyricsmaniacom">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
|
||||
</td>
|
||||
<td width=70>
|
||||
<g:plusone size="tall" href="http://www.lyricsmania.com/hey_its_ok_lyrics_lilly_wood_and_the_prick.html"></g:plusone>
|
||||
</td>
|
||||
</tr></table>
|
||||
<br>
|
||||
<center>
|
||||
<span style="font-size:14px;">
|
||||
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" onclick="javascript: pageTracker._trackPageview('/tonefuset1');"><img src="/images/phone_icon_red_small_trans.gif" border="0"></a>
|
||||
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" style="color: #cc0000; font-weight: bold; font-family: Arial; text-decoration: underline;" onclick="javascript: pageTracker._trackPageview('/tonefuset1');">Send "Hey It's Ok" to your Cell</a>
|
||||
|
||||
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" onclick="javascript: pageTracker._trackPageview('/tonefuset1');"><img src="/images/phone_icon_red_small_trans2.gif" border="0"></a>
|
||||
</span>
|
||||
</center>
|
||||
<br>
|
||||
<div style="clear: both; overflow: hidden; text-align:center;">
|
||||
<a href="http://www.musictory.com/music/Lilly+Wood+%5Band%5D+The+Prick/Hey+It%27s+Ok" target="_blank"><img src="/bottone3.png" style="vertical-align: bottom; margin-right:5px;"></a>
|
||||
<a href="http://www.musictory.com/music/Lilly+Wood+%5Band%5D+The+Prick/Hey+It%27s+Ok" target="_blank">Watch "Hey It's Ok" video</a><a href="http://www.musictory.com/music/Lilly+Wood+%5Band%5D+The+Prick/Hey+It%27s+Ok" target="_blank"><img src="/bottone3.png" style="vertical-align: bottom; margin-left:5px;"></a>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
<div class="other-lyrics">
|
||||
<strong>Other Lilly Wood & The Prick Lyrics:</strong><br><br>
|
||||
<a href="/down_the_drain_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Down the Drain lyrics</a>
|
||||
<a href="/this_is_a_love_song_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">This Is A Love Song lyrics</a>
|
||||
<a href="/my_best_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">My Best lyrics</a>
|
||||
<a href="/cover_my_face_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Cover My Face lyrics</a>
|
||||
<a href="/water_ran_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Water Ran lyrics</a>
|
||||
<a href="/prayer_in_c_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Prayer In C lyrics</a>
|
||||
<a href="/little_johnny_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Little Johnny lyrics</a>
|
||||
<a href="/middle_of_the_night_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Middle Of The Night lyrics</a>
|
||||
<a href="/a_time_is_near_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">A Time Is Near lyrics</a>
|
||||
<a href="/down_the_drain_demo_version_lyrics_lilly_wood_and_the_prick.html" onclick="javascript: pageTracker._trackPageview('/other-lyrics-alto');">Down The Drain (Demo Version) lyrics</a>
|
||||
</div> <!-- other -->
|
||||
<strong>Lyrics to Hey It's Ok</strong> :<br />
|
||||
<div id='songlyrics_h' class='dn'>
|
||||
Mama, Papa, please forget the times <br />
|
||||
I wet my bed <br />
|
||||
I swear not to do it again <br />
|
||||
Please forgive the way I looked <br />
|
||||
when I was fourteen <br />
|
||||
I didn't know who I wanted to be <br />
|
||||
<br />
|
||||
Hey It's OK, It's OK <br />
|
||||
Cause I've found what i wanted <br />
|
||||
Hey It's OK, I'ts Ok <br />
|
||||
Cause I've found what i wanted <br />
|
||||
<br />
|
||||
Friends and lovers please forgive <br />
|
||||
the mean things I've said <br />
|
||||
I swear not to do again <br />
|
||||
Please forgive the way I act when <br />
|
||||
I've had too much to drink <br />
|
||||
I'm fighting against myself <br />
|
||||
<br />
|
||||
Hey It's OK, It's OK <br />
|
||||
Cause I've found what i wanted <br />
|
||||
Hey It's OK, I'ts Ok<br />
|
||||
<br />
|
||||
Cause I've found what i wanted <br />
|
||||
<br />
|
||||
And I swear not to do anything funny anymore <br />
|
||||
yes I swear not to do anything funny anymore <br />
|
||||
<br />
|
||||
Hey It's OK, It's OK <br />
|
||||
Cause I've found what i wanted <br />
|
||||
Hey It's OK, I'ts Ok <br />
|
||||
Cause I've found what i wanted <br />
|
||||
Hey It's OK, It's OK <br />
|
||||
Cause I've found what i wanted <br />
|
||||
Hey It's OK, I'ts Ok <br />
|
||||
Cause I've found what i wanted<br />
|
||||
<br />
|
||||
(Merci à Julia pour cettes paroles)<br />
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
var song_id = "";
|
||||
var youtube_video = false;
|
||||
var lv_code = "";
|
||||
var l_code = "";
|
||||
var v_code = "";
|
||||
</script>
|
||||
<div id="songlyrics"></div>
|
||||
<script type="text/javascript">
|
||||
gE('songlyrics').innerHTML = gE('songlyrics_h').innerHTML;
|
||||
if (typeof startSignatureInsert === 'function')
|
||||
{
|
||||
startSignatureInsert();
|
||||
}
|
||||
</script>
|
||||
|
||||
<br />[ These are <a href="hey_its_ok_lyrics_lilly_wood_and_the_prick.html" title="Hey It's Ok Lyrics">Hey It's Ok Lyrics</a> on http://www.lyricsmania.com/ ]
|
||||
<br><br>
|
||||
<script>
|
||||
google_ad_client = 'ca-pub-2633654272685046';
|
||||
google_ad_channel = '1908251867';
|
||||
google_override_format = 'true';
|
||||
google_ad_width = 430;
|
||||
google_ad_height = 80;
|
||||
google_ad_type = 'text/image';
|
||||
google_color_link = '#0057DA';
|
||||
google_color_url = '#000000';
|
||||
google_color_url = '#000000';
|
||||
google_language = 'en';
|
||||
</script>
|
||||
<script src="https://pagead2.googlesyndication.com/pagead/show_ads.js
|
||||
"></script>
|
||||
<br><br>
|
||||
<center>
|
||||
<span style="font-size:14px;">
|
||||
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" onclick="javascript: pageTracker._trackPageview('/tonefuset2');"><img src="/images/phone_icon_red_small_trans.gif" border="0"></a>
|
||||
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" style="color: #cc0000; font-weight: bold; font-family: Arial; text-decoration: underline;" onclick="javascript: pageTracker._trackPageview('/tonefuset2');">Send "Hey It's Ok" to your Cell</a>
|
||||
<a href="/redir.php?id=7&artist=Lilly Wood & The Prick&song=Hey It's Ok" target="_blank" onclick="javascript: pageTracker._trackPageview('/tonefuset2');"><img src="/images/phone_icon_red_small_trans2.gif" border="0"></a>
|
||||
</span>
|
||||
</center>
|
||||
<div class="clr"></div>
|
||||
<br>
|
||||
|
||||
<div class=thinbox>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<h5><a name="commentlyrics">Comments to these lyrics</a></h5>
|
||||
<br />
|
||||
<a href="javascript:void(0);" onclick="popolaDiv('comment_post','leave_comment')" id="leave_comment">Leave a Comment</a><br />
|
||||
<div id="comment_post" style="display: none;">
|
||||
|
||||
<form method=post action="http://my.lyricsmania.com/login.php?destpage=/comments/add.html" id="add_comment_form" name="add_comment_form" onSubmit="validateForm(add_comment_form.comment)">
|
||||
<input type="hidden" name="id_testo" value="1069996">
|
||||
<textarea type=text maxlenght=50 rows="5" cols="33" wrap="virtual" name="comment" onKeyDown="limitText(this.form.comment,this.form.countdown,500);"
|
||||
onKeyUp="limitText(this.form.comment,this.form.countdown,500);"></textarea><br /><font size="1">(Maximum characters: 500)<br>
|
||||
You have <input readonly type="text" name="countdown" size="3" value="500"> characters left.</font>
|
||||
<br />
|
||||
Verification: <input type="text" name="verification"><br>Enter the text in the image
|
||||
<br>
|
||||
<img border="0" src="/captcha.php">
|
||||
<br>
|
||||
<input type="submit" name="add_comment" value="Add Comment" id="submit_comment"> </form>
|
||||
</div>
|
||||
|
||||
<br />
|
||||
No comments to these lyrics yet, be the first!
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id=rectangle>
|
||||
|
||||
|
||||
<div style='margin-bottom: 10px'>
|
||||
<script type="text/javascript"><!--
|
||||
e9 = new Object();
|
||||
e9.size = "300x250";
|
||||
e9.addBlockingCategories="Audio,Pop-under,Pop-up";
|
||||
//--></script>
|
||||
<script type="text/javascript" src="http://tags.expo9.exponential.com/tags/LyricsMania/ROS/tags.js"></script></div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="fb-root"></div>
|
||||
<script>
|
||||
/*
|
||||
window.fbAsyncInit = function() {
|
||||
FB.init({
|
||||
appId : '137256903140676',
|
||||
channelUrl : '//www.facebook.com/pages/Lyrics-Mania/144174245625143',
|
||||
status : true,
|
||||
xfbml : true
|
||||
});
|
||||
}
|
||||
;*/
|
||||
(function(d, s, id) {
|
||||
var js, fjs = d.getElementsByTagName(s)[0];
|
||||
if (d.getElementById(id)) return;
|
||||
js = d.createElement(s); js.id = id;
|
||||
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
|
||||
fjs.parentNode.insertBefore(js, fjs);
|
||||
}(document, 'script', 'facebook-jssdk'));
|
||||
</script>
|
||||
<div class="thinbox">
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FLyrics-Mania%2F144174245625143&width=292&colorscheme=light&show_faces=true&stream=false&header=false&height=258" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:258px;" allowTransparency="true"></iframe>
|
||||
<div class="g-plus" data-href="https://plus.google.com/112654762505809752225?rel=publisher" data-width="300" data-height="69" data-theme="light"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div><div class=thinbox>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<h5>Last Added Lyrics</h5>
|
||||
|
||||
<a href="/les_artistes_lyrics_lilly_wood_and_the_prick.html">L.E.S. Artistes lyrics</a><br>
|
||||
<a href="/a_time_is_near_lyrics_lilly_wood_and_the_prick.html">A Time Is Near lyrics</a><br>
|
||||
<a href="/long_way_back_lyrics_lilly_wood_and_the_prick.html">Long Way Back lyrics</a><br>
|
||||
<a href="/middle_of_the_night_lyrics_lilly_wood_and_the_prick.html">Middle Of The Night lyrics</a><br>
|
||||
<a href="/hymn_to_my_invisible_friend_lyrics_lilly_wood_and_the_prick.html">Hymn To My Invisible Friend lyrics</a><br>
|
||||
<a href="/this_is_a_love_song_lyrics_lilly_wood_and_the_prick.html">This Is A Love Song lyrics</a><br>
|
||||
<a href="/go_slow_lyrics_lilly_wood_and_the_prick.html">Go Slow lyrics</a><br>
|
||||
<a href="/les_artistes_lyrics_lilly_wood_and_the_prick.html">L.e.s Artistes lyrics</a><br>
|
||||
<a href="/down_the_drain_demo_version_lyrics_lilly_wood_and_the_prick.html">Down The Drain (Demo Version) lyrics</a><br>
|
||||
<a href="/hymn_to_my_invisble_friend_lyrics_lilly_wood_and_the_prick.html">Hymn To My Invisble Friend lyrics</a><br>
|
||||
<a href="/a_time_is_near_lyrics_lilly_wood_and_the_prick.html">A Time Is Near lyrics</a><br>
|
||||
<a href="/hopeless_kids_lyrics_lilly_wood_and_the_prick.html">Hopeless Kids lyrics</a><br>
|
||||
<a href="/little_johnny_lyrics_lilly_wood_and_the_prick.html">Little Johnny lyrics</a><br>
|
||||
<a href="/my_best_lyrics_lilly_wood_and_the_prick.html">My Best lyrics</a><br>
|
||||
<a href="/prayer_in_c_lyrics_lilly_wood_and_the_prick.html">Prayer In C lyrics</a><br>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div><div class=thinbox>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<h5>Last 20 Artists</h5>
|
||||
<a href="/traucoholik_lyrics.html" title="Traucoholik lyrics">Traucoholik lyrics</a> |
|
||||
<a href="/mitochondrion_lyrics.html" title="Mitochondrion lyrics">Mitochondrion lyrics</a> |
|
||||
<a href="/leela_and_the_rams_lyrics.html" title="Leela and The Rams lyrics">Leela and The Rams lyrics</a> |
|
||||
<a href="/mariana_caetano_lyrics.html" title="Mariana Caetano lyrics">Mariana Caetano lyrics</a> |
|
||||
<a href="/dosfire_lyrics.html" title="Dosfire lyrics">Dosfire lyrics</a> |
|
||||
<a href="/kapone47_lyrics.html" title="Kapone47 lyrics">Kapone47 lyrics</a> |
|
||||
<a href="/2anormal_lyrics.html" title="2anormal lyrics">2anormal lyrics</a> |
|
||||
<a href="/poetic_teacher_lyrics.html" title="Poetic Teacher lyrics">Poetic Teacher lyrics</a> |
|
||||
<a href="/stefano_bittelli_lyrics.html" title="Stefano Bittelli lyrics">Stefano Bittelli lyrics</a> |
|
||||
<a href="/skeme_lyrics.html" title="Skeme lyrics">Skeme lyrics</a> |
|
||||
<a href="/monica_sannino_lyrics.html" title="Monica Sannino lyrics">Monica Sannino lyrics</a> |
|
||||
<a href="/mariachiara_castaldi_lyrics.html" title="Mariachiara Castaldi lyrics">Mariachiara Castaldi lyrics</a> |
|
||||
<a href="/le_sparole_lyrics.html" title="Le Sparole lyrics">Le Sparole lyrics</a> |
|
||||
<a href="/marco_colonna_lyrics.html" title="Marco Colonna lyrics">Marco Colonna lyrics</a> |
|
||||
<a href="/lorenzo_luraca_lyrics.html" title="Lorenzo Luracà lyrics">Lorenzo Luracà lyrics</a> |
|
||||
<a href="/eddi_santiago_figueroa_montes_lyrics.html" title="Eddi Santiago Figueroa Montes lyrics">Eddi Santiago Figueroa Montes lyrics</a> |
|
||||
<a href="/valentina_livi_lyrics.html" title="Valentina Livi lyrics">Valentina Livi lyrics</a> |
|
||||
<a href="/gabriele_morini_lyrics.html" title="Gabriele Morini lyrics">Gabriele Morini lyrics</a> |
|
||||
<a href="/francesco_palma_lyrics.html" title="Francesco Palma lyrics">Francesco Palma lyrics</a> |
|
||||
<a href="/violetta_zironi_lyrics.html" title="Violetta Zironi lyrics">Violetta Zironi lyrics</a> |
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class=clr></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class=clr></div>
|
||||
|
||||
<div id=topartists>
|
||||
|
||||
|
||||
<div class=thinbox>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<h5><a href="/topartists.html">Top Artists</a></h5>
|
||||
<table cellpadding="1" cellspacing="2" width="100%" height="150">
|
||||
<tr class=charts>
|
||||
<td valign="top">
|
||||
<a href="/rihanna_lyrics.html" title="Rihanna lyrics">Rihanna lyrics</a><br>
|
||||
<a href="/kapone47_lyrics.html" title="Kapone47 lyrics">Kapone47 lyrics</a><br>
|
||||
<a href="/2anormal_lyrics.html" title="2anormal lyrics">2anormal lyrics</a><br>
|
||||
<a href="/dvbbs_and_borgeous_lyrics.html" title="DVBBS & Borgeous lyrics">DVBBS & Borgeous lyrics</a><br>
|
||||
<a href="/ross_lynch,_maia_mitchell_and_teen_beach_movie_cast_lyrics.html" title="Ross Lynch, Maia Mitchell & Teen Beach Movie Cast lyrics">Ross Lynch, Maia Mitchell & Teen Beach Movie Cast lyrics</a><br>
|
||||
<a href="/miley_cyrus_lyrics.html" title="Miley Cyrus lyrics">Miley Cyrus lyrics</a><br>
|
||||
<a href="/mumford_and_sons_lyrics.html" title="Mumford & Sons lyrics">Mumford & Sons lyrics</a><br>
|
||||
<a href="/nicki_minaj_lyrics.html" title="Nicki Minaj lyrics">Nicki Minaj lyrics</a><br>
|
||||
<a href="/arctic_monkeys_lyrics.html" title="Arctic Monkeys lyrics">Arctic Monkeys lyrics</a><br>
|
||||
<a href="/adele_lyrics.html" title="Adele lyrics">Adele lyrics</a><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id=toplyrics>
|
||||
|
||||
<div class=thinbox>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<h5><a href="/toplyrics.html">Top Lyrics</a></h5>
|
||||
<table cellpadding="1" cellspacing="2" width="564" height="150">
|
||||
<tr class=charts>
|
||||
<td valign="top">
|
||||
Katy Perry - <a href="/roar_lyrics_katy_perry.html" title="Roar lyrics">Roar lyrics</a><br>
|
||||
Avicii - <a href="/wake_me_up_lyrics_avicii.html" title="Wake Me Up lyrics">Wake Me Up lyrics</a><br>
|
||||
Martin Garrix - <a href="/animals_lyrics_martin_garrix.html" title="Animals lyrics">Animals lyrics</a><br>
|
||||
Romeo Santos - <a href="/propuesta_indecente_lyrics_romeo_santos.html" title="Propuesta Indecente lyrics">Propuesta Indecente lyrics</a><br>
|
||||
Of Monsters And Men - <a href="/little_talks_lyrics_of_monsters_and_men_1.html" title="Little Talks lyrics">Little Talks lyrics</a><br>
|
||||
Ed Sheeran - <a href="/lego_house_lyrics_ed_sheeran.html" title="Lego House lyrics">Lego House lyrics</a><br>
|
||||
Fray (The) - <a href="/how_to_save_a_life_lyrics_fray_the.html" title="How To Save A Life lyrics">How To Save A Life lyrics</a><br>
|
||||
Capital Cities - <a href="/safe_and_sound_lyrics_capital_cities.html" title="Safe and Sound lyrics">Safe and Sound lyrics</a><br>
|
||||
Lulu and the Lampshades - <a href="/youre_gonna_miss_me_lyrics_lulu_and_the_lampshades.html" title="You're Gonna Miss Me lyrics">You're Gonna Miss Me lyrics</a><br>
|
||||
DVBBS & Borgeous - <a href="/tsunami_lyrics_dvbbs_and_borgeous.html" title="Tsunami lyrics">Tsunami lyrics</a><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div></div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id=leftcolumn2>
|
||||
<div class=thinbox>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<h5>Main Menu</h5>
|
||||
<a href="/contact.html">Contact Us</a><br />
|
||||
<a href="/dancelyrics.html">Dance Lyrics</a>
|
||||
<a href="/jinglebellslyrics.html" title="Jingle Bells Lyrics">Jingle Bells Lyrics</a><br />
|
||||
<a href="/biographies.html">Biographies</a><br />
|
||||
<a href="/links.html">Links</a><br />
|
||||
<a href="/linkus.html">Link To Us</a><br />
|
||||
<a href="/toadvertise.html">To Advertise</a><br />
|
||||
<a href="/contact.html">Request Lyrics</a><br />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class=thinbox>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<h5>Play This Song</h5>
|
||||
<!-- start snippet -->
|
||||
<div class="boxcontent1"><!-- this line may not be needed-->
|
||||
<div class="boxcontent2" style="height:45px;"> <!-- this line may not be
|
||||
needed-->
|
||||
<!-- edit this DIV below for positioning -->
|
||||
|
||||
<div style="position:relative;left:-41px;top:-35px;">
|
||||
<script type="text/javascript" src="
|
||||
http://cd02.static.jango.com/javascripts/promos/jangolib_3.js"></script>
|
||||
|
||||
<link rel=StyleSheet href="
|
||||
http://cd02.static.jango.com/stylesheets/promo/jangoscroller_3b.css"
|
||||
type="text/css">
|
||||
<div class="scroller">
|
||||
<div class="expandBtn"><a href="http://www.jango.com" target="_blank"
|
||||
class="expandBtn"><img src="
|
||||
http://cd02.static.jango.com/images/promo/playerCornerSpacer_1.gif"
|
||||
border="0" width="10" height="10" alt="free music" /></a></div>
|
||||
<div class="playerBG"><a href="http://www.jango.com/play/Lilly Wood & The Prick/Hey It's Ok"
|
||||
target="_blank">
|
||||
<img src="
|
||||
http://cd02.static.jango.com/images/promo/playerLyrics160Black.gif"
|
||||
border="0" alt="free music" /></a></div>
|
||||
<div style="position:absolute;top:26px;left:18px;">
|
||||
<marquee width="140" scrolldelay="150">
|
||||
<a href="http://www.jango.com/play/Lilly Wood & The Prick/Hey It's Ok" class="playList">Lilly Wood & The Prick - Hey It's Ok</a>
|
||||
</marquee>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<img src="http://p.jango.com/lyricsmania.gif"
|
||||
style="width:1px;height:1px;" />
|
||||
</div>
|
||||
|
||||
</div><!-- this line may not be needed-->
|
||||
</div><!-- this line may not be needed-->
|
||||
<div class="boxfooter"></div><!-- this line may not be needed-->
|
||||
<!-- snippet end -->
|
||||
|
||||
<div style="text-align:center; margin-left:-20px;">
|
||||
<script type="text/javascript">
|
||||
GA_googleFillSlotWithSize("ca-pub-3687873374834629",
|
||||
"LyricsMania_160x170_wrapper", 160, 170);
|
||||
</script>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div style='margin-bottom: 10px'>
|
||||
<script type="text/javascript"><!--
|
||||
e9 = new Object();
|
||||
e9.size = "160x600,120x600";
|
||||
e9.addBlockingCategories="Audio,Pop-under,Pop-up";
|
||||
//--></script>
|
||||
<script type="text/javascript" src="http://tags.expo9.exponential.com/tags/LyricsMania/ROS/tags.js"></script>
|
||||
</div>
|
||||
<div class=thinbox>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<h5>Partners</h5>
|
||||
<a href="http://www.uplyrics.com/" target=_blank title="Lyrics">Lyrics</a><br>
|
||||
<a href="http://www.parolesmania.com/paroles_lilly_wood_and_the_prick_57989.html" target=_blank title="Paroles Lilly Wood & The Prick">Paroles Lilly Wood & The Prick</a><br>
|
||||
<a href="http://www.testimania.com/" target=_blank title="Testi Gratis">Testi Canzoni</a><br>
|
||||
<a href="http://www.letrasmania.com/" target=_blank title="Letras de canciones">Letras De Canciones</a><br>
|
||||
<a href="http://www.angolotesti.i/" target=_blank title="Testi Canzoni Gratis">Testi Di Canzoni</a><br>
|
||||
<a href="http://www.ricettemania.it" target=_blank>Ricette</a><br>
|
||||
<a href="http://www.musictory.com" title="Music Directory" target=_blank>Musictory</a><br>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div></div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class=clr></div></div>
|
||||
<div class=clr></div></div>
|
||||
|
||||
<div id=whitebox_b>
|
||||
<div id=whitebox_bl>
|
||||
<div id=whitebox_br>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id=footer>
|
||||
<div id=footer_l>
|
||||
<div id=footer_r>
|
||||
<div>LyricsMania.com - Copyright © 2013 - All Rights Reserved<br /><a href="/privacy.php">Privacy Policy</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="toolbar" style="bottom: -60px;">
|
||||
<div id="toolbar-content">
|
||||
<ul>
|
||||
<li>
|
||||
<img src="/pictures/thumbnails/73507.jpg">
|
||||
<a href="/miranda_lambert_lyrics.html" onclick="javascript: pageTracker._trackPageview('/toolbar');">Miranda Lambert</a>
|
||||
</li>
|
||||
<li>
|
||||
<img src="/pictures/thumbnails/1974.jpg">
|
||||
<a href="/last_day_before_holiday_lyrics.html" onclick="javascript: pageTracker._trackPageview('/toolbar');">Last Day Before Holiday</a>
|
||||
</li>
|
||||
<li>
|
||||
<img src="/pictures/thumbnails/69023.jpg">
|
||||
<a href="/afrim_muqiqi_lyrics.html" onclick="javascript: pageTracker._trackPageview('/toolbar');">Afrim Muqiqi</a>
|
||||
</li>
|
||||
<li>
|
||||
<img src="/pictures/thumbnails/91173.jpg">
|
||||
<a href="/downset_lyrics.html" onclick="javascript: pageTracker._trackPageview('/toolbar');">Downset</a>
|
||||
</li>
|
||||
<li>
|
||||
<img src="/pictures/thumbnails/74453.jpg">
|
||||
<a href="/jamar_rogers_lyrics.html" onclick="javascript: pageTracker._trackPageview('/toolbar');">Jamar Rogers</a>
|
||||
</li>
|
||||
<div class="clear"></div>
|
||||
</ul>
|
||||
</div> <!-- toolbar-content -->
|
||||
<div id="close"><a href="javascript:void(0);" onclick="toolbar('open-toolbar','toolbar')"><img src="/images/close-down.png"></a></div> <!-- close -->
|
||||
</div> <!-- toolbar -->
|
||||
<div id="open-toolbar" style="display:none; bottom: -60px;"><a href="javascript:void(0);" onclick="toolbar('toolbar','open-toolbar')"><img src="/images/open-up.png"></a></div>
|
||||
<script>
|
||||
setTimeout(function(){slide('toolbar')},2);
|
||||
</script>
|
||||
</div></div>
|
||||
|
||||
<div id="rect_ad_loader" style="display:none;">
|
||||
<div class=thinbox>
|
||||
<div>
|
||||
<div>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
e9 = new Object();
|
||||
e9.size = "300x250";
|
||||
e9.addBlockingCategories="Audio,Pop-under,Pop-up";
|
||||
//--></script>
|
||||
<script type="text/javascript" src="http://tags.expo9.exponential.com/tags/LyricsMania/ROS/tags.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
document.getElementById("rect_ad").innerHTML = document.getElementById("rect_ad_loader").innerHTML
|
||||
</script></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
197
test/rsrc/lyrics/lyricsontopcom/jazznblueslyricshtml.txt
Normal file
197
test/rsrc/lyrics/lyricsontopcom/jazznblueslyricshtml.txt
Normal file
|
|
@ -0,0 +1,197 @@
|
|||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<meta name="alexaVerifyID" content="" />
|
||||
<meta name="msvalidate.01" content="60DE70962793812CD1E385169487C4C1" />
|
||||
<meta name="robots" content="index,follow" />
|
||||
<title>Amy Winehouse - Jazz N' Blues lyrics complete</title>
|
||||
<base href="http://www.lyricsontop.com/" />
|
||||
<link rel="stylesheet" href="http://www.lyricsontop.com/style.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://www.lyricsontop.com/feed" />
|
||||
<link rel="alternate" type="text/xml" title="RSS .92" href="http://www.lyricsontop.com/feed-rss" />
|
||||
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="" />
|
||||
|
||||
<!-- seo pack : description, keywords, canonical -->
|
||||
<meta name ="description" content="Lyrics complete to Jazz N' Blues by Amy Winehouse. Search more lyrics by Amy Winehouse. Newest album and video by Amy Winehouse updated." />
|
||||
<meta name ="keywords" content="Jazz N' Blues lyrics, song text Jazz N' Blues, Amy Winehouse Jazz N' Blues song lyric, top lyrics by Amy Winehouse" />
|
||||
<link rel ="canonical" href="http://www.lyricsontop.com/amy-winehouse-songs/jazz-n-blues-lyrics.html" />
|
||||
<!-- seo pack -->
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="main">
|
||||
<!-- header starts here -->
|
||||
<div id="top_sitemap">
|
||||
<div style="text-align:left;" class="left">
|
||||
<a href="http://www.lyricsontop.com/" style="font-size:26px;"><b>LyricsOnTop</b></a>
|
||||
<br /><br />
|
||||
<div id="legend">
|
||||
<a href="http://www.lyricsontop.com">Home</a>-<a href="http://www.lyricsontop.com/lyrics/A.html">Letter A</a>-<a href="http://www.lyricsontop.com/amy-winehouse-songs.html">Amy Winehouse</a>-<a href="http://www.lyricsontop.com/amy-winehouse-songs/jazz-n-blues-lyrics.html">Jazz N' Blues</a> </div>
|
||||
</div>
|
||||
|
||||
<form class="right" name="Search" action="http://www.lyricsontop.com/search.html" method="post" style="margin-right:5px;width:240px;">
|
||||
<input type="text" style="padding:2px; border:1px solid #FFF; width:180px; text-align:right;" name="search_txt" />
|
||||
<input type="submit" value="GO" id="blq-search-btn" />
|
||||
</form>
|
||||
<ul id="top_menu">
|
||||
<li style="border:none;">Lyric Search</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- header ends here -->
|
||||
<div id="content_left">
|
||||
<h1>song by <a href="http://www.lyricsontop.com/amy-winehouse-songs.html">Amy Winehouse</a><br />Jazz N' Blues lyrics</h1>
|
||||
<br />
|
||||
<div style="width:120px; height:600px; float:left; margin-right:10px; padding:5px;">
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-5092809093026300";
|
||||
/* vertical_lyric_ont */
|
||||
google_ad_slot = "5028718693";
|
||||
google_ad_width = 120;
|
||||
google_ad_height = 600;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script></div>
|
||||
<br />
|
||||
It's all gone within two days,<br />
|
||||
Follow my father<br />
|
||||
His extravagant ways<br />
|
||||
So, if I got it out I'll spend it all.<br />
|
||||
Heading In parkway, til I hit the wall.<br />
|
||||
I cross my fingers at the cash machine,<br />
|
||||
As I check my balance I kiss the screen,<br />
|
||||
I love it when it says I got the main's<br />
|
||||
To got o Miss Sixty and pick up my jeans.<br />
|
||||
Money ever last long<br />
|
||||
Had to fight what's wrong,<br />
|
||||
Blow it all on bags and shoes,<br />
|
||||
Jazz n' blues.<br />
|
||||
Money ever last long,<br />
|
||||
Had to fight what's wrong,<br />
|
||||
Blow it all on bags and shoes,<br />
|
||||
Jazz n' blues.<br />
|
||||
<br />
|
||||
Standing to the … bar today,<br />
|
||||
Waiting impatient to throw my cash away,<br />
|
||||
For that Russian JD and coke<br />
|
||||
Had the drinks all night, and now I am bold<br />
|
||||
But that's cool, cause I can buy more from you.<br />
|
||||
And I didn't forgot about that 50 Compton,<br />
|
||||
Tell you what? My fancy's coming through<br />
|
||||
I'll take you at shopping, can you wait til next June?<br />
|
||||
Yeah, Money ever last long<br />
|
||||
Had to fight what's wrong,<br />
|
||||
Blow it all on bags and shoes,<br />
|
||||
Jazz n' blues.<br />
|
||||
Money ever last long,<br />
|
||||
Had to fight what's wrong,<br />
|
||||
Blow it all on bags and shoes,<br />
|
||||
Jazz n' blues.<br />
|
||||
<br />
|
||||
(Instrumental Break)<br />
|
||||
<br />
|
||||
Money ever last long<br />
|
||||
Had to fight what's wrong,<br />
|
||||
Blow it all on bags and shoes,<br />
|
||||
Jazz n' blues.<br />
|
||||
Money ever last long,<br />
|
||||
Had to fight what's wrong,<br />
|
||||
Blow it all on bags and shoes,<br />
|
||||
Jazz n' blues.<br />
|
||||
Money ever last long,<br />
|
||||
Had to fight what's wrong,<br />
|
||||
Blow it all on bags and shoes,<br />
|
||||
Jazz n' blues.<br />
|
||||
|
||||
</div>
|
||||
<div id="sidebar_right">
|
||||
|
||||
<div class="left_box_top">Search artist by letter</div>
|
||||
<div class="left_box">
|
||||
<div id="top_letters">
|
||||
<a href="http://www.lyricsontop.com/lyrics/A.html">A</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/B.html">B</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/C.html">C</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/D.html">D</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/E.html">E</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/F.html">F</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/G.html">G</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/H.html">H</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/I.html">I</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/J.html">J</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/K.html">K</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/L.html">L</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/M.html">M</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/N.html">N</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/O.html">O</a><br />
|
||||
<a href="http://www.lyricsontop.com/lyrics/P.html">P</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/Q.html">Q</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/R.html">R</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/S.html">S</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/T.html">T</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/U.html">U</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/V.html">V</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/W.html">W</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/X.html">X</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/Y.html">Y</a>
|
||||
<a href="http://www.lyricsontop.com/lyrics/Z.html">Z</a>
|
||||
<span style="color:#4b99d4;"> | </span>
|
||||
<a href="http://www.lyricsontop.com/lyrics/0-9.html">Other</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="left_box_bottom"></div><br />
|
||||
|
||||
<br />
|
||||
<div class="left_box_top">Latest music news</div>
|
||||
<div class="left_box" style="border-left:none; border-right:none;"><b>#1</b> <a href="http://www.lyricsontop.com/news_fall-out-boy-debuted-love-sex-death-new-single.html">Fall Out Boy debuted Love, Sex, Death new single</a>
|
||||
<div style="height:1px; border-top:1px dashed #CCC; margin:2px 0px;"></div><b>#2</b> <a href="http://www.lyricsontop.com/news_chris-brown-takes-the-dancefloor-in-new-video-love-more.html">Chris Brown takes the dancefloor in new video Love More</a>
|
||||
<div style="height:1px; border-top:1px dashed #CCC; margin:2px 0px;"></div><b>#3</b> <a href="http://www.lyricsontop.com/news_kelly-clarkson-is-back-with-new-video-tie-it-up.html">Kelly Clarkson is back with new video Tie It Up</a>
|
||||
<div style="height:1px; border-top:1px dashed #CCC; margin:2px 0px;"></div><b>#4</b> <a href="http://www.lyricsontop.com/news_listen-to-big-seans-new-single-control-hof-ft-kendrick-lamar.html">Listen to Big Sean's new single Control(HOF) ft Kendrick Lamar</a>
|
||||
<div style="height:1px; border-top:1px dashed #CCC; margin:2px 0px;"></div><b>#5</b> <a href="http://www.lyricsontop.com/news_watch-panic-at-the-disco-premiered-this-is-gospel-clip.html">Watch: Panic! At THe Disco premiered This Is Gospel clip</a>
|
||||
<div style="height:1px; border-top:1px dashed #CCC; margin:2px 0px;"></div><div style="text-align:right; padding-right:20px;"><a href="http://www.lyricsontop.com/news.html" style="color:#4e4e4e; font-size:14px;">view all news</a></div></div>
|
||||
<div class="left_box_bottom"></div><br />
|
||||
|
||||
<div style="margin:10px 0px; width:300px; height:250px;">
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-5092809093026300";
|
||||
/* lyric_acc */
|
||||
google_ad_slot = "9391113499";
|
||||
google_ad_width = 300;
|
||||
google_ad_height = 250;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script>
|
||||
</div>
|
||||
<div class="left_box_top">Most visited 10 lyrics</div>
|
||||
<div class="left_box" style="border-left:none; border-right:none;"><b>#1</b> <a href="http://www.lyricsontop.com/nicki-minaj-songs/love-more-ft-chris-brown-lyrics.html" style="font-size:15px; line-height:20px;">Nicki Minaj - Love More ft Chris Brown lyrics</a> [30770 visits]<br /><b>#2</b> <a href="http://www.lyricsontop.com/pink-songs/just-give-me-a-reason-lyrics.html" style="font-size:15px; line-height:20px;">PINK - Just Give Me A Reason lyrics</a> [24981 visits]<br /><b>#3</b> <a href="http://www.lyricsontop.com/kirko-bangz-songs/keep-it-trill-lyrics.html" style="font-size:15px; line-height:20px;">KIRKO BANGZ - Keep It Trill lyrics</a> [22475 visits]<br /><b>#4</b> <a href="http://www.lyricsontop.com/devendra-banhart-songs/mi-negrita-lyrics.html" style="font-size:15px; line-height:20px;">Devendra Banhart - Mi Negrita lyrics</a> [19708 visits]<br /><b>#5</b> <a href="http://www.lyricsontop.com/pink-songs/try-lyrics.html" style="font-size:15px; line-height:20px;">PINK - Try lyrics</a> [18996 visits]<br /><b>#6</b> <a href="http://www.lyricsontop.com/nonono-songs/pumpin-blood-lyrics.html" style="font-size:15px; line-height:20px;">NONONO - Pumpin Blood lyrics</a> [14176 visits]<br /><b>#7</b> <a href="http://www.lyricsontop.com/devendra-banhart-songs/never-seen-such-good-things-lyrics.html" style="font-size:15px; line-height:20px;">Devendra Banhart - Never Seen Such Good Things lyrics</a> [13173 visits]<br /><b>#8</b> <a href="http://www.lyricsontop.com/lorde-songs/the-love-club-lyrics.html" style="font-size:15px; line-height:20px;">LORDE - The Love Club lyrics</a> [12584 visits]<br /><b>#9</b> <a href="http://www.lyricsontop.com/lil-wayne-songs/awkward-lyrics.html" style="font-size:15px; line-height:20px;">Lil Wayne - Awkward lyrics</a> [10282 visits]<br /><b>#10</b> <a href="http://www.lyricsontop.com/one-direction-songs/live-while-were-young-lyrics.html" style="font-size:15px; line-height:20px;">One Direction - Live While We're Young lyrics</a> [9487 visits]<br /></div>
|
||||
<div class="left_box_bottom"></div><br />
|
||||
</div>
|
||||
<!-- footer starts here -->
|
||||
<div id="footer" style="height:31px; clear:both; text-align:center; font-size:11px; border-top:1px solid #CCC;">
|
||||
All lyrics displayed on this site are the property of their owners and are provided for educational purposes only.<br />
|
||||
Copyright © 2012 Lyricsontop.com All rights reserved <a href="http://www.lyricsontop.com/privacy.html" style="margin-left:20px;">Privacy Policy</a> <a href="http://www.lyricsontop.com/dmca.html" style="margin-left:20px;">DMCA Policy</a>
|
||||
</div>
|
||||
<!-- footer ends here -->
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-9332049-7']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
1407
test/rsrc/lyrics/lyricswikiacom/TheBeatlesLadyMadonna.txt
Normal file
1407
test/rsrc/lyrics/lyricswikiacom/TheBeatlesLadyMadonna.txt
Normal file
File diff suppressed because one or more lines are too long
1157
test/rsrc/lyrics/metrolyricscom/bestforlastlyricsadelehtml.txt
Normal file
1157
test/rsrc/lyrics/metrolyricscom/bestforlastlyricsadelehtml.txt
Normal file
File diff suppressed because one or more lines are too long
836
test/rsrc/lyrics/parolesnet/parolesheyitsok.txt
Normal file
836
test/rsrc/lyrics/parolesnet/parolesheyitsok.txt
Normal file
|
|
@ -0,0 +1,836 @@
|
|||
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<!--[if lt IE 9]>
|
||||
|
||||
<script>
|
||||
|
||||
document.createElement('header');
|
||||
|
||||
document.createElement('nav');
|
||||
|
||||
document.createElement('section');
|
||||
|
||||
document.createElement('article');
|
||||
|
||||
document.createElement('aside');
|
||||
|
||||
document.createElement('footer');
|
||||
|
||||
</script>
|
||||
|
||||
<![endif]-->
|
||||
|
||||
<head>
|
||||
|
||||
<title>Paroles Hey It's Ok par Lilly Wood & The Prick - Paroles.net (clip, musique, traduction)</title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
||||
<meta name="Description" content="Paroles du titre Hey It's Ok - Lilly Wood & The Prick avec Paroles.net - Retrouvez également les paroles des chansons les plus populaires de Lilly Wood & The Prick" />
|
||||
|
||||
<meta name="google-site-verification" content="_xxKww1hfgERbbKqwOT3mYWgqrEk-S3rYC3BJw-WwK0" />
|
||||
|
||||
<meta name="robots" content="index, follow" />
|
||||
|
||||
|
||||
|
||||
<link rel="shortcut icon" href="/lib/images/favicon.ico" />
|
||||
|
||||
<script type="text/javascript" src="/lib/js/jquery/jquery-1.8.0.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="/lib/js/jquery/jquery-ui-1.8.23.custom.min.js"></script>
|
||||
|
||||
<script type="text/javascript" src="/lib/js/search.js"></script>
|
||||
|
||||
<script type="text/javascript" src="/lib/js/front.js"></script>
|
||||
|
||||
<script src="//cdn.optimizely.com/js/200582459.js"></script>
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/lib/css/style.css" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="/lib/js/jquery/css/smoothness/jquery-ui-1.8.23.custom.css" />
|
||||
|
||||
<script language="javascript" type="text/javascript" src="http://a01.adoptima.com/GP2d96de88b87b22d55"></script><script type="text/javascript" src="http://ads.ayads.co/ajs.php?zid=488"></script><script type='text/javascript'>
|
||||
(function() {
|
||||
var useSSL = 'https:' == document.location.protocol;
|
||||
var src = (useSSL ? 'https:' : 'http:') +
|
||||
'//www.googletagservices.com/tag/js/gpt.js';
|
||||
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
|
||||
})();
|
||||
</script>
|
||||
<script type='text/javascript'>
|
||||
googletag.defineSlot('/6975/FR/paroles.net', [[728, 90]], 'div-gpt-ad-154877467-0').addService(googletag.pubads()).setTargeting('pos', 'top');
|
||||
googletag.defineSlot('/6975/FR/paroles.net', [[300, 250], [300, 600]], 'div-gpt-ad-154877467-1').addService(googletag.pubads()).setTargeting('pos', 'top');
|
||||
googletag.defineOutOfPageSlot('/6975/FR/paroles.net', 'div-gpt-ad-154877467-2-oop').addService(googletag.pubads());
|
||||
googletag.pubads().enableSyncRendering();
|
||||
googletag.pubads().enableSingleRequest();
|
||||
googletag.enableServices();
|
||||
</script>
|
||||
</head>
|
||||
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<!-- FR/paroles.net -->
|
||||
<div id='div-gpt-ad-154877467-2-oop'>
|
||||
<script type='text/javascript'>
|
||||
googletag.display('div-gpt-ad-154877467-2-oop');
|
||||
</script>
|
||||
</div><script type="text/javascript" src="http://as.ebz.io/api/choixPubJS.htm?pid=303381&screenLayer=1&mode=NONE&home=http://www.paroles.net"></script>
|
||||
<header>
|
||||
|
||||
<div id="header-wrapper">
|
||||
|
||||
<div id="header-inner">
|
||||
|
||||
|
||||
|
||||
<div id="header-left-block">
|
||||
|
||||
|
||||
<a href="/" class="logo"><img src="/lib/images/logo-paroles.jpg" alt="paroles logo"></a><br>
|
||||
<nav style="float:left;margin-top:8px;">
|
||||
|
||||
<ul class="main-nav" role="navigation">
|
||||
|
||||
<li><a href="/"><span class="last">Paroles de chansons</span></a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- // header left block -->
|
||||
|
||||
<div id="header-right-block">
|
||||
|
||||
<div class="header-ad-wrapper">
|
||||
|
||||
<div class="header-ad-inner">
|
||||
|
||||
<!-- FR/paroles.net -->
|
||||
<div id='div-gpt-ad-154877467-0'>
|
||||
<script type='text/javascript'>
|
||||
googletag.display('div-gpt-ad-154877467-0');
|
||||
</script>
|
||||
<noscript><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/6975/FR/paroles.net&sz=728x90&t=pos%3Dtop%26&c=154877467"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/6975/FR/paroles.net&sz=728x90&t=pos%3Dtop%26&c=154877467">
|
||||
</a>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- // header block righ -->
|
||||
|
||||
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- // header - inner -->
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<div id="search-box-top">
|
||||
|
||||
<div id="search-box-wrapper">
|
||||
|
||||
<div class="search-box">
|
||||
|
||||
<p id="search-box-title">
|
||||
|
||||
RECHERCHEZ VOS CHANSONS ET VOS ARTISTES
|
||||
</p>
|
||||
|
||||
<form class="mlm" action="/search" method="post" id="search-form-round">
|
||||
|
||||
<fieldset>
|
||||
|
||||
<input aria-haspopup="true" aria-autocomplete="list" role="textbox" autocomplete="off" class="text ui-autocomplete-input" id="search-input" name="search" value="Patricia Kaas, Robbie Williams, J'attends L'amour" onclick="this.value = '';" type="text">
|
||||
|
||||
<input value="OK" class="search_button" type="submit">
|
||||
|
||||
</fieldset>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- // search box -->
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
|
||||
<div id="content-wrapper">
|
||||
|
||||
|
||||
<div id="content-inner">
|
||||
|
||||
<div class="breadcrumb">
|
||||
<p>
|
||||
<a href="/"><span class="breadcrumb-text">Paroles.net</span><span class="breadcrumb-separator"></span></a>
|
||||
<a href="http://www.paroles.net/lilly-wood-the-prick"><span class="breadcrumb-text">Paroles Lilly Wood & The Prick</span><span class="breadcrumb-separator last"></span></a>
|
||||
<span class="breadcrumb-current">Paroles Hey It's Ok</span>
|
||||
</p>
|
||||
</div>
|
||||
<div class="main-separator"></div>
|
||||
<div class="one-column" id="main" style="width:570px;">
|
||||
<div class="box left" xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Review-aggregate">
|
||||
<div rel="v:itemreviewed">
|
||||
<div typeof="v:Song">
|
||||
<h1>Chansons <span property="v:name">Hey It's Ok</span> - <span property="v:artist">Lilly Wood & The Prick</span></h1>
|
||||
<div class="box-content" style="width:570px;">
|
||||
<div class="song-details">
|
||||
<p>Auteurs:
|
||||
<strong>Nili Ben Meir</strong>,<strong>Benjamin Cotto</strong> </p>
|
||||
<p>Compositeurs:
|
||||
<strong>Nili Ben Meir</strong>,<strong>Benjamin Cotto</strong> </p>
|
||||
<p>Editeurs:
|
||||
<strong>Warner Chappell Music France</strong>,<strong>Choke Industry</strong> </p>
|
||||
</div>
|
||||
<!-- // song details -->
|
||||
|
||||
<table style="border:0px;margin:5px;">
|
||||
<tr>
|
||||
<td width="20%" style="border:0px;">
|
||||
<!-- Facebook &appId=110267509025267 -->
|
||||
<div id="fb-root"></div>
|
||||
<script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'facebook-jssdk'));</script>
|
||||
<div class="fb-like" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>
|
||||
|
||||
</td>
|
||||
<td width="20%" style="border:0px;">
|
||||
<!-- Google+ -->
|
||||
<div class="g-plusone" data-size="medium"></div>
|
||||
<script type="text/javascript">
|
||||
(function() {var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;po.src = 'https://apis.google.com/js/plusone.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);})();
|
||||
</script>
|
||||
</td>
|
||||
<td width="20%" style="border:0px;">
|
||||
<!-- Twitter -->
|
||||
<a href="https://twitter.com/share" class="twitter-share-button">Tweet</a>
|
||||
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
|
||||
</td>
|
||||
|
||||
<td style="border:0px;">
|
||||
<script type="text/javascript">var ratingWidth = 120;</script>
|
||||
<div class="rating" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating" rel="v:rating">
|
||||
<div class="message">Votez pour cette chanson</div>
|
||||
<div class="stars">
|
||||
<span class="yellow-stars" style="width:0px"
|
||||
itemprop="ratingValue" property="v:average"
|
||||
data-initial-percent="0"
|
||||
data-element-type="2"
|
||||
data-element-id="83783"
|
||||
title="0 / 5 of 0 votes ">
|
||||
0 </span>
|
||||
</div>
|
||||
<span itemprop="bestRating" class="hidden" property="v:best">5</span>
|
||||
<span itemprop="worstRating" class="hidden" property="v:worst">1</span>
|
||||
<span itemprop="reviewCount" class="hidden" property="v:votes">0</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table> <div class="song-text-wrapper">
|
||||
<div class="song-text-inner">
|
||||
<div style="text-align:center;padding-top:10px;">
|
||||
<a style="font-size:14px;color:#ff3333;font-weight:bold;" href="http://track.effiliation.com/servlet/effi.click?id_compteur=12404002&effi_id=parolesnet&artist=Lilly+Wood+%26+The+Prick&song=Hey+It%27s+Ok">Téléchargez la sonnerie "Hey It's Ok" sur votre mobile</a>
|
||||
</div>
|
||||
<div class="song-text-frame">
|
||||
<div class="song-text">Mama, Papa please forget the times I wet my bed<br />
|
||||
I swear not to do it again<br />
|
||||
Please forget the way I looked when I was fourteen<br />
|
||||
I didn’t know who I wanted to be<br />
|
||||
<br />
|
||||
Hey ! It’s OK, it’s OK<br />
|
||||
Cause I’ve found what I wanted<br />
|
||||
I said hey ! It’s OK, it’s OK<br />
|
||||
Cause I’ve found what I wanted<br />
|
||||
<br />
|
||||
Friends and lovers please forgive the mean things I’ve said<br />
|
||||
I swear not to do it again<br />
|
||||
Please forget the way I act when I’ve had too much to drink<br />
|
||||
I’m fighting against myself<br />
|
||||
<br />
|
||||
Hey ! It’s OK, it’s OK<br />
|
||||
Cause I’ve found what I wanted<br />
|
||||
I said hey ! It’s OK, it’s OK<br />
|
||||
Cause I’ve found what I wanted<br />
|
||||
<br />
|
||||
And I swear not to do anything funny anymore<br />
|
||||
Yes I swear not to do anything funny anymore<br />
|
||||
<br />
|
||||
Hey ! It’s OK, it’s OK<br />
|
||||
Cause I’ve found what I wanted<br />
|
||||
I said hey ! It’s OK, it’s OK<br />
|
||||
Cause I’ve found what I wanted<br />
|
||||
<br />
|
||||
Hey ! It’s OK, it’s OK<br />
|
||||
Cause I’ve found what I wanted<br />
|
||||
I said hey ! It’s OK, it’s OK<br />
|
||||
Cause I’ve found what I wanted</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom:10px;">
|
||||
<h2>Les plus grands succès de Lilly Wood & The Prick</h2>
|
||||
</div>
|
||||
<div class="listing-sidebar">
|
||||
<div class="listing-sidebar-wrapper">
|
||||
<div class="listing-sidebar-inner">
|
||||
<table cellspacing="0" cellpadding="0" class="">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="186" valign="middle" class="song-name">
|
||||
<p><a href="http://www.paroles.net/lilly-wood-the-prick/paroles-down-the-drain">Down The Drain</a></p>
|
||||
</td>
|
||||
<td width="186" valign="middle" class="song-name">
|
||||
<p><a href="http://www.paroles.net/lilly-wood-the-prick/paroles-long-way-back">Long way back</a></p>
|
||||
</td>
|
||||
<td width="186" valign="middle" class="song-name">
|
||||
<p><a href="http://www.paroles.net/lilly-wood-the-prick/paroles-middle-of-the-night">Middle Of the Night</a></p>
|
||||
</td>
|
||||
</tr><tr> <td width="186" valign="middle" class="song-name">
|
||||
</td>
|
||||
<td width="186" valign="middle" class="song-name">
|
||||
</td>
|
||||
<td width="186" valign="middle" class="song-name">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="listing-artist-shadow"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
<div id="sidebar">
|
||||
|
||||
<div id="sidebar">
|
||||
|
||||
|
||||
<div class="sidebar-pager">
|
||||
<h5>ABC DE LA CHANSON</h5>
|
||||
<div class="sidebar-pager-wrapper">
|
||||
<div class="sidebar-pager-inner">
|
||||
|
||||
<a href="http://www.paroles.net/paroles-a" class="pager-letter">a</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-b" class="pager-letter">b</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-c" class="pager-letter">c</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-d" class="pager-letter">d</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-e" class="pager-letter">e</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-f" class="pager-letter">f</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-g" class="pager-letter">g</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-h" class="pager-letter">h</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-i" class="pager-letter">i</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-j" class="pager-letter">j</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-k" class="pager-letter">k</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-l" class="pager-letter">l</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-m" class="pager-letter">m</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-n" class="pager-letter">n</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-o" class="pager-letter">o</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-p" class="pager-letter">p</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-q" class="pager-letter">q</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-r" class="pager-letter">r</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-s" class="pager-letter">s</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-t" class="pager-letter">t</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-u" class="pager-letter">u</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-v" class="pager-letter">v</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-w" class="pager-letter">w</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-x" class="pager-letter">x</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-y" class="pager-letter">y</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-z" class="pager-letter">z</a>
|
||||
|
||||
<a href="http://www.paroles.net/paroles-0_9" class="pager-letter">0-9</a>
|
||||
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar-pager-shadow"></div>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="facebook-box">
|
||||
<h5>
|
||||
Suivez-nous</h5>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="33%">
|
||||
<!-- Facebook -->
|
||||
<div id="fb-root"></div>
|
||||
<script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'facebook-jssdk'));</script>
|
||||
<div class="fb-like" data-href="http://www.paroles.net" data-layout="button_count" data-send="false" data-show-faces="false" data-width="450"></div></td>
|
||||
<td width="33%">
|
||||
<!-- Google+ -->
|
||||
<div class="g-plusone" data-size="medium" data-href="http://www.paroles.net" ></div>
|
||||
<script type="text/javascript">(function() {var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;po.src = 'https://apis.google.com/js/plusone.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);})();</script></td>
|
||||
<td>
|
||||
<!-- Twitter -->
|
||||
<a class="twitter-share-button" href="https://twitter.com/share" data-url="http://www.paroles.net" >Tweet</a>
|
||||
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<script type="text/javascript">var ratingWidth = 120;</script>
|
||||
<div class="rating" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating" rel="v:rating">
|
||||
<div class="message">Donnez votre avis sur le site</div>
|
||||
<div class="stars">
|
||||
<span class="yellow-stars" style="width:100px"
|
||||
itemprop="ratingValue" property="v:average"
|
||||
data-initial-percent="100"
|
||||
data-element-type="1"
|
||||
data-element-id="0"
|
||||
title="4.2 / 5 of 5348 votes ">
|
||||
4.2 </span>
|
||||
</div>
|
||||
<span itemprop="bestRating" class="hidden" property="v:best">5</span>
|
||||
<span itemprop="worstRating" class="hidden" property="v:worst">1</span>
|
||||
<span itemprop="reviewCount" class="hidden" property="v:votes">5348</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="sidebar-textbox listing-sidebar" id="sidebar-item-33">
|
||||
<h5></h5>
|
||||
<div class="listing-sidebar-wrapper">
|
||||
<div class="listing-sidebar-inner">
|
||||
<div id="my_first_container"></div>
|
||||
<script>
|
||||
window.dmPublisherAsyncInit = function()
|
||||
{
|
||||
var conf = [
|
||||
{ filters: 'creative-official', search: 'Lilly Wood & The Prick+Hey It s Ok', channel: 'music', page:1, limit: 1, sort:'relevance', syndication: 127269, type: 'single_player', autoplay: 1, width: 300, containerId: 'my_first_container' }
|
||||
];
|
||||
DM_PublisherWidgets.render(conf);
|
||||
};
|
||||
(function() {
|
||||
var e = document.createElement('script'); e.async = true;
|
||||
e.src = 'http://static2.dmcdn.net/publisher/widgets.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(e, s);
|
||||
autoplay=1;
|
||||
}());
|
||||
</script> </div>
|
||||
</div>
|
||||
<div class="sidebar-pager-shadow"></div>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="sidebar-banner-box ">
|
||||
|
||||
<!-- FR/paroles.net -->
|
||||
<div id='div-gpt-ad-154877467-1'>
|
||||
<script type='text/javascript'>
|
||||
googletag.display('div-gpt-ad-154877467-1');
|
||||
</script>
|
||||
<noscript><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/6975/FR/paroles.net&sz=300x250|300x600&t=pos%3Dtop%26&c=154877467"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/6975/FR/paroles.net&sz=300x250|300x600&t=pos%3Dtop%26&c=154877467">
|
||||
</a>
|
||||
</noscript>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="facebook-box">
|
||||
<iframe src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2FParoles.net&width=292&height=258&colorscheme=light&show_faces=true&header=false&stream=false&show_border=true&appId=110267509025267" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:258px;" allowTransparency="true"></iframe>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="listing-sidebar">
|
||||
<h5>On aime </h5>
|
||||
<div class="listing-sidebar-wrapper">
|
||||
<div class="listing-sidebar-inner">
|
||||
<table cellpadding="0" cellspacing="0" class="song-list">
|
||||
<tbody>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30"><span>1</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href=""></a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
<a href="http://www.paroles.net/generation-goldman">Génération Goldman</a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30"><span>2</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href=""></a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
<a href="http://www.paroles.net/grand-corps-malade">Grand Corps Malade</a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30"><span>3</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href=""></a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
<a href="http://www.paroles.net/juliette">Juliette</a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30"><span>4</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href=""></a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
<a href="http://www.paroles.net/mylene-farmer">Mylène Farmer</a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30"><span>5</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href=""></a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
<a href="http://www.paroles.net/la-lavrette">La Lavrette</a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30"><span>6</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href="http://www.paroles.net/dj-assad/paroles-li-tourner">Paroles Li Tourner</a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
DJ Assad </p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30"><span>7</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href="http://www.paroles.net/joyce-jonathan/paroles-ca-ira">Paroles Ca ira</a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
Joyce Jonathan </p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30"><span>8</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href="http://www.paroles.net/keen-v/paroles-la-vie-du-bon-cote">Paroles La vie du bon côté</a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
Keen'v </p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30"><span>9</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href="http://www.paroles.net/rohff/paroles-j-accelere">Paroles J'accélère</a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
<a href="http://www.paroles.net/rohff">Rohff</a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30">span>10</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href="http://www.paroles.net/stromae/paroles-tous-les-memes">Paroles Tous les mêmes</a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
<a href="http://www.paroles.net/stromae">Stromae</a>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="song-icon" valign="middle" width="30"><span>11</span></td>
|
||||
<td class="song-name" valign="middle" width="110">
|
||||
<p><a href="http://www.paroles.net/stromae/paroles-papaoutai">Paroles Papaoutai</a></p>
|
||||
</td>
|
||||
<td class="song-artist" valign="middle" width="134">
|
||||
<p>
|
||||
Stromae </p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar-pager-shadow"></div>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="sidebar-link">
|
||||
<a href="http://www.paroles.net/paroles-nouvelles-chansons">
|
||||
<span> Nouveautés </span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="sidebar-link" id="sidebar-item-19">
|
||||
<a href="http://www.paroles.net/les-plus-grands-succes-francophones">
|
||||
<span>Top 30 francophone</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="sidebar-link" id="sidebar-item-21">
|
||||
<a href="http://www.paroles.net/top-chansons-d-amour">
|
||||
<span>Chansons d'Amour</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="sidebar-link" id="sidebar-item-31">
|
||||
<a href="http://www.paroles.net/espoirs-francophones">
|
||||
<span>Espoirs Francophones</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="sidebar-link" id="sidebar-item-13">
|
||||
<a href="http://www.paroles.net/rap-francais">
|
||||
<span>Rap Français</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="sidebar-separator"></div>
|
||||
|
||||
|
||||
<div class="selling separator left">
|
||||
<div class="selling-inner">
|
||||
<header>
|
||||
<h2 style="width: 150px;">Téléchargement</h2>
|
||||
<img src="/lib/images/itunes-icon.jpg" alt="itunes icon">
|
||||
</header>
|
||||
<section>
|
||||
<div class="selling-item">
|
||||
|
||||
<a href="http://clkuk.tradedoubler.com/click?p=23753&a=2165759&url=https%3A%2F%2Fitunes.apple.com%2Ffr%2Falbum%2Fracine-carree%2Fid678899158%3Fuo%3D2%26partnerId%3D2003">
|
||||
<span class="selling-text">
|
||||
<span class="selling-title">Racine Carrée - Stromae</span><br>
|
||||
<span style="font-size: 10px;">Genre: Variété française</span><br>
|
||||
<em>Prix: 9,99 €</em>
|
||||
</span>
|
||||
<span class="selling-arrow">
|
||||
<img src="/lib/images/red-arrow.png" alt="red arrow">
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<a href="http://clkuk.tradedoubler.com/click?p=23753&a=2165759&url=https%3A%2F%2Fitunes.apple.com%2Ffr%2Falbum%2Faventine%2Fid681187053%3Fuo%3D2%26partnerId%3D2003">
|
||||
<span class="selling-text">
|
||||
<span class="selling-title">Aventine - Agnes Obel</span><br>
|
||||
<span style="font-size: 10px;">Genre: Alternative</span><br>
|
||||
<em>Prix: 9,99 €</em>
|
||||
</span>
|
||||
<span class="selling-arrow">
|
||||
<img src="/lib/images/red-arrow.png" alt="red arrow">
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<a href="http://clkuk.tradedoubler.com/click?p=23753&a=2165759&url=https%3A%2F%2Fitunes.apple.com%2Ffr%2Falbum%2Fnrj-200-hits-2013-vol.-2%2Fid699113552%3Fuo%3D2%26partnerId%3D2003">
|
||||
<span class="selling-text">
|
||||
<span class="selling-title">NRJ 200% Hits 2013, vol. 2 - Various Artists</span><br>
|
||||
<span style="font-size: 10px;">Genre: Pop</span><br>
|
||||
<em>Prix: 12,99 €</em>
|
||||
</span>
|
||||
<span class="selling-arrow">
|
||||
<img src="/lib/images/red-arrow.png" alt="red arrow">
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<a href="http://clkuk.tradedoubler.com/click?p=23753&a=2165759&url=https%3A%2F%2Fitunes.apple.com%2Ffr%2Falbum%2Finnocents%2Fid665943630%3Fuo%3D2%26partnerId%3D2003">
|
||||
<span class="selling-text">
|
||||
<span class="selling-title">Innocents - Moby</span><br>
|
||||
<span style="font-size: 10px;">Genre: Électronique</span><br>
|
||||
<em>Prix: 9,99 €</em>
|
||||
</span>
|
||||
<span class="selling-arrow">
|
||||
<img src="/lib/images/red-arrow.png" alt="red arrow">
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<a href="http://clkuk.tradedoubler.com/click?p=23753&a=2165759&url=https%3A%2F%2Fitunes.apple.com%2Ffr%2Falbum%2Fseine-zoo%2Fid703440410%3Fuo%3D2%26partnerId%3D2003">
|
||||
<span class="selling-text">
|
||||
<span class="selling-title">Seine Zoo - S-Crew</span><br>
|
||||
<span style="font-size: 10px;">Genre: Hip-hop/Rap</span><br>
|
||||
<em>Prix: 9,99 €</em>
|
||||
</span>
|
||||
<span class="selling-arrow">
|
||||
<img src="/lib/images/red-arrow.png" alt="red arrow">
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
<footer>
|
||||
<div class="selling-footer"></div>
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- // content wrapper -->
|
||||
|
||||
</div>
|
||||
|
||||
<!-- // content -->
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<!-- // section -->
|
||||
|
||||
<footer>
|
||||
|
||||
<div id="footer-wrapper">
|
||||
<div id="footer-inner">
|
||||
<div class="footer-box">
|
||||
<div class="footer-content">
|
||||
<p>
|
||||
<strong>Prochains Albums</strong></p>
|
||||
<p>
|
||||
<!--
|
||||
<p>
|
||||
► <a href="/christophe-mae-album-je-veux-du-bonheur">Paroles Christophe Maé - Je veux du bonheur</a></p>
|
||||
<p>
|
||||
-->
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-box">
|
||||
<div class="footer-content">
|
||||
<p>
|
||||
<strong>Thématiques</strong></p>
|
||||
<p>
|
||||
► <a href="/rap-francais">Rap Français</a><br />
|
||||
► <a href="/top-chansons-d-amour">Chansons d'amour</a></p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-box">
|
||||
<div class="footer-content">
|
||||
<p>
|
||||
<strong>Plan de site</strong></p>
|
||||
<p>
|
||||
► <a href="/mentions-legales">Mentions légales</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
<p id="copyright">Copyright © 2012 Paroles.net </p>
|
||||
</footer>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
var _gaq = _gaq || [];
|
||||
|
||||
_gaq.push(['_setAccount', 'UA-32671664-1']);
|
||||
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
||||
|
||||
|
||||
(function() {
|
||||
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
|
||||
})();
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<script type="text/javascript" src="http://fr.slidein.clickintext.net/?a=12208"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
148
test/rsrc/lyrics/reggaelyricsinfo/icouldbeatmyself.txt
Normal file
148
test/rsrc/lyrics/reggaelyricsinfo/icouldbeatmyself.txt
Normal file
|
|
@ -0,0 +1,148 @@
|
|||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" >
|
||||
<head>
|
||||
<title>I Could Beat Myself - Beres Hammond » Reggae Lyrics</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
|
||||
<meta name="description" content="Searchable reggae lyrics database with a large number of reggae, dancehall, ska, rocksteady, lovers rock and ragga songs." />
|
||||
<meta name="keywords" content="lyrics, lyric, song, music, song lyrics, music lyrics, reggae, reggae lyrics, lyrics search, new lyrics, dancehall, sound clash, clash, riddim, riddims, DJ, deejay, jamaica, music, ska, ragga, rocksteady, dub, dub music, roots reggae, lovers rock, reggae fusion" />
|
||||
|
||||
<link rel="icon" href="http://www.reggaelyrics.info/favicon.ico" type="image/x-icon" />
|
||||
<link rel="shortcut icon" href="http://www.reggaelyrics.info/favicon.ico" type="image/x-icon" />
|
||||
<link rel="stylesheet" href="http://www.reggaelyrics.info/style/site.css" type="text/css" media="all" />
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-7587978-3']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<img src="http://www.reggaelyrics.info/images/socialLogo.jpg" id="socialLogo" alt="" style="display: none;"/>
|
||||
<div id="bg">
|
||||
<div id="main">
|
||||
|
||||
<div id="header">
|
||||
<a title="ReggaeLyrics.info" href="http://www.reggaelyrics.info/">
|
||||
<span id="logo"></span>
|
||||
</a>
|
||||
<div id="headBanner">
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-9116042048777073";
|
||||
google_ad_slot = "8820782086";
|
||||
google_ad_width = 728;
|
||||
google_ad_height = 90;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
<div id="headNav">
|
||||
<div id="headMenu">
|
||||
<ul>
|
||||
<li><a href="http://www.reggaelyrics.info/">Home</a> |</li>
|
||||
<li><a href="http://www.reggaelyrics.info/submit/">Submit Lyrics</a> |</li>
|
||||
<li><a href="http://www.reggaelyrics.info/about/">About</a> |</li>
|
||||
<li><a href="http://www.reggaelyrics.info/community/">Community</a> |</li>
|
||||
<li><a href="http://www.reggaelyrics.info/link/">Link to Us</a> |</li>
|
||||
<li><a href="http://www.reggaelyrics.info/contact/">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="headSearch">
|
||||
<form method="post" action="http://www.reggaelyrics.info/search/">
|
||||
<div id="searchForm">
|
||||
<input type="text" value="" name="queryString" /> <input type="radio" name="searchType" value="artist" checked/><label for="artist">Artist</label><input type="radio" name="searchType" value="song" /><label for="song">Song Title</label><input type="submit" value=" " name="go" class="searchBt">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div id="alphabet">
|
||||
<ul>
|
||||
<li><a href="http://www.reggaelyrics.info/0/">#</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/a/">A</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/b/">B</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/c/">C</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/d/">D</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/e/">E</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/f/">F</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/g/">G</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/h/">H</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/i/">I</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/j/">J</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/k/">K</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/l/">L</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/m/">M</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/n/">N</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/o/">O</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/p/">P</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/q/">Q</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/r/">R</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/s/">S</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/t/">T</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/u/">U</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/v/">V</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/w/">W</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/x/">X</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/y/">Y</a></li>
|
||||
<li><a href="http://www.reggaelyrics.info/z/">Z</a></li>
|
||||
</ul>
|
||||
</div> <div id="mainContent">
|
||||
<div id="leftContainer">
|
||||
<div id="insideBox" class="protected">
|
||||
<script type="text/javascript" src="http://www.reggaelyrics.info/scripts/c.js"></script>
|
||||
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-501d498e69752e44"></script>
|
||||
<h2>I Could Beat Myself</h2>
|
||||
<h3><a href="http://www.reggaelyrics.info/beres-hammond/">Beres Hammond</a></h3>
|
||||
<div class="addthis_toolbox addthis_default_style " style="margin-bottom: 15px;">
|
||||
<a class="addthis_button_facebook"></a>
|
||||
<a class="addthis_button_twitter"></a>
|
||||
<a class="addthis_button_pinterest_share"></a>
|
||||
<a class="addthis_button_email"></a>
|
||||
<a class="addthis_button_compact"></a>
|
||||
<a class="addthis_counter addthis_bubble_style"></a>
|
||||
</div>
|
||||
<p>oooh ahh, I'm hurting, bad<br />oooh ahh I'm hurting bad!<br /><br />I did not see what I was supposed to see<br />taking it easy when a friend told me I was in<br />danger, so much danger.<br />Underestimating my woman, not taking her<br />out, working too hard and now she's gone off<br />with a stranger, someone I don't even know.<br /><br />I should have taken her out, every once and a<br />while, taken her to dinner on the finer side, shown<br />her a life that was all worth while, now I guese I gotta<br />walk an extra mile! I could beat myself! Ahh yeah.<br /><br />Now I'm gonna feel funny out there in the crowd<br />when my friends all ask me, where is your woman?<br />long time I don't see. Now I've got to think fast gotta<br />use my head, give a good story and make sure they<br />buy my version of the situation.<br /><br />All the while I wouldn't lie I'm gonna do this once<br />see my reputation sinking in the distance, if they<br />knew the truth that really existed...then my little sanity<br />would be wasted! I could beat myself ahh yes..I could<br />beat myself!!! Ohh lord lord.<br /><br />oooh ooh I'm hurting, hurting inside<br />oooh ooh I'm hurting<br /><br />Now I really want to hear a little news now and<br />then, this is not what I expect to hear from my<br />friend I'm dissapointed. He should realize that its<br />gonna destroy my position (remember I'm a name<br />brand) now I've gotta see....I should have held her tight<br />every once and a while, gotten it together on the finer style<br />shown her a life that was all worth while, now it seems I gotta<br />walk an extra mile....I could beat myself..ahh yes, I could beat myself<br />ooh lord...<br /><br />ooh I'm hurting...<br />ooooh I'm hurting,hurting inside<br /><br />I don't know what I wanna tell you<br />but I wanna tell you something real, real good yes<br />someting to make you<br />wanna shiver....</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="right">
|
||||
<div id="righTopBanner">
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-9116042048777073";
|
||||
google_ad_slot = "9914820990";
|
||||
google_ad_width = 300;
|
||||
google_ad_height = 250;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<ul>
|
||||
<li><a href="http://www.reggaelyrics.info/">Home</a> |</li>
|
||||
<li><a href="http://www.reggaelyrics.info/submit/">Submit Lyrics</a> |</li>
|
||||
<li><a href="http://www.reggaelyrics.info/about/">About</a> |</li>
|
||||
<li><a href="http://www.reggaelyrics.info/community/">Community</a> |</li>
|
||||
<li><a href="http://www.reggaelyrics.info/link/">Link to Us</a> |</li>
|
||||
<li><a href="http://www.reggaelyrics.info/contact/">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
264
test/rsrc/lyrics/releaselyricscom/thebeatlesladymadonna.txt
Normal file
264
test/rsrc/lyrics/releaselyricscom/thebeatlesladymadonna.txt
Normal file
|
|
@ -0,0 +1,264 @@
|
|||
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="canonical" href="http://www.releaselyrics.com/e35f/the-beatles-lady-madonna/" />
|
||||
<meta name="description" content="Lady Madonna lyrics by The Beatles. See all 745 songs and 19 albums from The Beatles." />
|
||||
<meta name="robots" content="noarchive" />
|
||||
<meta name="google" content="notranslate" />
|
||||
<link href="http://www.releaselyrics.com/css/simple-v2.css" rel="stylesheet" type="text/css">
|
||||
<title>THE BEATLES - Lady Madonna Lyrics</title>
|
||||
<meta property="og:image" content="http://www.releaselyrics.com/img/nocover.jpg" />
|
||||
<script>
|
||||
document.cookie="jscheck=6940208719844826998d718b26665982; path=/";
|
||||
function submitComment() { document.getElementById('comment-form').submit(); }
|
||||
function readComments() { document.location.href='http://www.releaselyrics.com/e35f-c0/the-beatles-lady-madonna/'; }
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
if(window.addEventListener)
|
||||
window.addEventListener("load", func_contentLoad);
|
||||
else if(window.attachEvent)
|
||||
window.attachEvent("onload", func_contentLoad);
|
||||
|
||||
function func_contentLoad() {
|
||||
var contentDiv = document.getElementById('id-content');
|
||||
var contentLines = contentDiv.getElementsByTagName('a');
|
||||
contentNumLines = contentLines.length;
|
||||
for(var i = 0; i < contentNumLines; i++) {
|
||||
contentLines[i].removeAttribute('href');
|
||||
}
|
||||
}
|
||||
//]]>
|
||||
</script>
|
||||
<script type="text/javascript" src="http://www.releaselyrics.com/js/comment.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="header">
|
||||
<a href="http://www.releaselyrics.com/">ReleaseLyrics</a> > <a href="http://www.releaselyrics.com/7371/the-beatles/">The Beatles</a> > <a href="http://www.releaselyrics.com/e35f/the-beatles-lady-madonna/">Lady Madonna Lyrics</a>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="content">
|
||||
|
||||
<div class="content-title">
|
||||
<h1>Lady Madonna Lyrics</h1>
|
||||
<span class="h2"><a href="http://www.releaselyrics.com/7371/the-beatles/">The Beatles</a></span>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
/* Above Lyrics */
|
||||
(function() {
|
||||
var opts = {
|
||||
artist: "The Beatles",
|
||||
song: "Lady Madonna",
|
||||
adunit_id: 39382063,
|
||||
div_id: "cf_async_" + Math.floor((Math.random() * 999999999)),
|
||||
};
|
||||
document.write('<div id="'+opts.div_id+'"></div>');var c=function(){cf.showAsyncAd(opts)};if(window.cf)c();else{cf_async=!0;var r=document.createElement("script"),s=document.getElementsByTagName("script")[0];r.async=!0;r.src="//srv.tonefuse.com/showads/showad.js";r.readyState?r.onreadystatechange=function(){if("loaded"==r.readyState||"complete"==r.readyState)r.onreadystatechange=null,c()}:r.onload=c;s.parentNode.insertBefore(r,s)};
|
||||
})();
|
||||
</script>
|
||||
<div class="content-lyrics" id="id-content">
|
||||
Lady Madonna, children at your feet<br>
|
||||
Wonder how you manage to make ends meet<br>
|
||||
Who find the money when you pay the rent<br>
|
||||
Did you think that money was heaven sent<br>
|
||||
<br>
|
||||
Friday night arrives without a suitcase<br>
|
||||
Sunday morning creeping like a nun<br>
|
||||
Monday's child has learned to tie his bootlegs<br>
|
||||
See how they run<br>
|
||||
<br>
|
||||
Lady Madonna, baby at your breast<br>
|
||||
Wonders how you manage to feed the rest<br>
|
||||
Pa pa pa pa...<br>
|
||||
See how they run<br>
|
||||
<br>
|
||||
Lady Madonna lying on the bed<br>
|
||||
Listen to the music playing in your head<br>
|
||||
<br>
|
||||
Tuesday afternoon is never ending<br>
|
||||
Wednesday morning papers didn't come<br>
|
||||
Thursday night you stocking needed mending<br>
|
||||
See how they run<br>
|
||||
<br>
|
||||
Lady Madonna, children at your feet<br>
|
||||
Wonder how you manage to make ends meet<br>
|
||||
</div><script>
|
||||
/* Below Lyrics */
|
||||
(function() {
|
||||
var opts = {
|
||||
artist: "The Beatles",
|
||||
song: "Lady Madonna",
|
||||
adunit_id: 39382064,
|
||||
div_id: "cf_async_" + Math.floor((Math.random() * 999999999)),
|
||||
};
|
||||
document.write('<div id="'+opts.div_id+'"></div>');var c=function(){cf.showAsyncAd(opts)};if(window.cf)c();else{cf_async=!0;var r=document.createElement("script"),s=document.getElementsByTagName("script")[0];r.async=!0;r.src="//srv.tonefuse.com/showads/showad.js";r.readyState?r.onreadystatechange=function(){if("loaded"==r.readyState||"complete"==r.readyState)r.onreadystatechange=null,c()}:r.onload=c;s.parentNode.insertBefore(r,s)};
|
||||
})();
|
||||
</script>
|
||||
|
||||
|
||||
<div class="content-commentform">
|
||||
<form id="comment-form" action="http://www.releaselyrics.com/comment/comment.php" method="post">
|
||||
<input type="hidden" name="comment-target" value="81b60e0864983e12fc2efa74c7cbe35f" />
|
||||
<div style="margin-bottom: 20px;"><a href="http://www.releaselyrics.com/e35f-c0/the-beatles-lady-madonna/" rel="nofollow">Read comments</a></div>
|
||||
<div style="float: left; line-height: 1.8em;">Name:</div>
|
||||
<div style="margin-left: 80px; margin-right: 10px;"><input type="text" name="comment-author" value="" class="tmpinput2" style="width: 100%;" /></div>
|
||||
<div style="margin-right: 10px; margin-top: 5px; margin-bottom: 5px;"><textarea name="comment-content" id="comment-contentform" class="tmpinput2" style="width: 100%;" rows="3"></textarea></div>
|
||||
<div style="float: right;"><input type="button" value="Add comment" class="tmpinput" onclick="javascript:submitComment();" /></div>
|
||||
<div style="clear: both;"></div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content-video">
|
||||
<iframe width="520" height="324" id="frame-video" frameborder="0" allowfullscreen=""></iframe>
|
||||
</div>
|
||||
<script>
|
||||
if(window.addEventListener)
|
||||
window.addEventListener("load", loadVideoDynamic);
|
||||
else if(window.attachEvent)
|
||||
window.attachEvent("onload", loadVideoDynamic);
|
||||
|
||||
function loadVideoDynamic() {
|
||||
document.getElementById("frame-video").contentDocument.body.innerHTML = '<html><body><div style="position: absolute; top: 0px; left: 0px;"><iframe width="520" height="324" src="http://www.youtube.com/embed/VfthrizXKOM" frameborder="0" allowfullscreen=""></iframe></div></body></html>';
|
||||
}
|
||||
</script>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="sidebar">
|
||||
|
||||
<div class="toptracks"><ul class="parent-list"><li class="big"><a href="http://www.releaselyrics.com/7371/the-beatles/" class="big">The Beatles</a></li><ul class="child-list"><li class="small"><a href="http://www.releaselyrics.com/1055/the-beatles-let-it-be/" class="small" rel="nofollow">Let It Be</a></li><li class="small"><a href="http://www.releaselyrics.com/d75b/the-beatles-yesterday/" class="small" rel="nofollow">Yesterday</a></li><li class="small"><a href="http://www.releaselyrics.com/2ca8/the-beatles-hey-jude/" class="small" rel="nofollow">Hey Jude</a></li><li class="small"><a href="http://www.releaselyrics.com/4cef/the-beatles-help%21/" class="small" rel="nofollow">Help!</a></li><li class="small"><a href="http://www.releaselyrics.com/9036/the-beatles-come-together/" class="small" rel="nofollow">Come Together</a></li><li class="small"><a href="http://www.releaselyrics.com/2eab/the-beatles-here-comes-the-sun/" class="small" rel="nofollow">Here Comes the Sun</a></li><li class="small"><a href="http://www.releaselyrics.com/885b/the-beatles-something/" class="small" rel="nofollow">Something</a></li><li class="small"><a href="http://www.releaselyrics.com/2fd0/the-beatles-all-you-need-is-love/" class="small" rel="nofollow">All You Need Is Love</a></li><li class="small"><a href="http://www.releaselyrics.com/0e37/the-beatles-yellow-submarine/" class="small" rel="nofollow">Yellow Submarine</a></li><li class="small"><a href="http://www.releaselyrics.com/b131/the-beatles-love-me-do/" class="small" rel="nofollow">Love Me Do</a></li><li class="small" style="border-bottom: none;"><a href="http://www.releaselyrics.com/7371/the-beatles/" class="small" rel="nofollow">more...</a></li></ul></ul></div>
|
||||
|
||||
<div class="media-rect">
|
||||
<script>
|
||||
cf_page_artist = "The Beatles";
|
||||
cf_page_song = "Lady Madonna";
|
||||
cf_adunit_id = "39382395";
|
||||
cf_hostname = "srv.clickfuse.com";
|
||||
</script>
|
||||
<script src="//srv.clickfuse.com/showads/showad.js"></script>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="release-container"><div class="release-list">
|
||||
<table class="release-table"><tr><td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/3167/the-beatles-revolver-sgt.-pepper%27s-lonely-hearts-club-band/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/img/nocover.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/3167/the-beatles-revolver-sgt.-pepper%27s-lonely-hearts-club-band/" rel="nofollow">Revolver / Sgt. Pepper's Lonely Hearts Club Band</a> (2009)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/711c/the-beatles-please-please-me-with-the-beatles/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/img/nocover.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/711c/the-beatles-please-please-me-with-the-beatles/" rel="nofollow">Please Please Me / With The Beatles</a> (2000)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/6fe7/the-beatles-let-it-be/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/6fe7/the-beatles-let-it-be.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/6fe7/the-beatles-let-it-be/" rel="nofollow">Let It Be</a> (1970)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/b434/the-beatles-abbey-road/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/b434/the-beatles-abbey-road.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/b434/the-beatles-abbey-road/" rel="nofollow">Abbey Road</a> (1969)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/a00b/the-beatles-the-beatles/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/a00b/the-beatles-the-beatles.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/a00b/the-beatles-the-beatles/" rel="nofollow">The Beatles</a> (1968)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/ffab/the-beatles-sgt.-pepper%27s-lonely-hearts-club-band/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/ffab/the-beatles-sgt.-pepper%27s-lonely-hearts-club-band.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/ffab/the-beatles-sgt.-pepper%27s-lonely-hearts-club-band/" rel="nofollow">Sgt. Pepper's Lonely Hearts Club Band</a> (1967)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/0357/the-beatles-revolver/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/0357/the-beatles-revolver.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/0357/the-beatles-revolver/" rel="nofollow">Revolver</a> (1966)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/9937/the-beatles-rubber-soul/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/9937/the-beatles-rubber-soul.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/9937/the-beatles-rubber-soul/" rel="nofollow">Rubber Soul</a> (1965)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/78da/the-beatles-beatles-vi/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/78da/the-beatles-beatles-vi.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/78da/the-beatles-beatles-vi/" rel="nofollow">Beatles VI</a> (1965)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/5424/the-beatles-beatles-%2765/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/5424/the-beatles-beatles-%2765.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/5424/the-beatles-beatles-%2765/" rel="nofollow">Beatles '65</a> (1964)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/4ab6/the-beatles-beatles-for-sale/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/4ab6/the-beatles-beatles-for-sale.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/4ab6/the-beatles-beatles-for-sale/" rel="nofollow">Beatles for Sale</a> (1964)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/88ec/the-beatles-something-new/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/88ec/the-beatles-something-new.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/88ec/the-beatles-something-new/" rel="nofollow">Something New</a> (1964)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/8b2e/the-beatles-the-beatles%27-long-tall-sally/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/8b2e/the-beatles-the-beatles%27-long-tall-sally.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/8b2e/the-beatles-the-beatles%27-long-tall-sally/" rel="nofollow">The Beatles' Long Tall Sally</a> (1964)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/f9e7/the-beatles-the-beatles%27-second-album/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/f9e7/the-beatles-the-beatles%27-second-album.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/f9e7/the-beatles-the-beatles%27-second-album/" rel="nofollow">The Beatles' Second Album</a> (1964)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/7053/the-beatles-twist-and-shout/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/7053/the-beatles-twist-and-shout.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/7053/the-beatles-twist-and-shout/" rel="nofollow">Twist and Shout</a> (1964)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/0b13/the-beatles-meet-the-beatles%21/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/0b13/the-beatles-meet-the-beatles%21.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/0b13/the-beatles-meet-the-beatles%21/" rel="nofollow">Meet The Beatles!</a> (1964)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/8e52/the-beatles-introducing...-the-beatles/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/8e52/the-beatles-introducing...-the-beatles.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/8e52/the-beatles-introducing...-the-beatles/" rel="nofollow">Introducing... The Beatles</a> (1964)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/4dc5/the-beatles-with-the-beatles/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/4dc5/the-beatles-with-the-beatles.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/4dc5/the-beatles-with-the-beatles/" rel="nofollow">With The Beatles</a> (1963)
|
||||
</td>
|
||||
<td class="release-td">
|
||||
<a href="http://www.releaselyrics.com/8a2b/the-beatles-please-please-me/" class="release-plain" rel="nofollow"><img src="http://www.releaselyrics.com/8a2b/the-beatles-please-please-me.jpg" class="release-img-small" /></a><br/><a href="http://www.releaselyrics.com/8a2b/the-beatles-please-please-me/" rel="nofollow">Please Please Me</a> (1963)
|
||||
</td>
|
||||
</tr></table>
|
||||
</div></div>
|
||||
|
||||
<div class="footer">
|
||||
<a href="http://www.releaselyrics.com/">ReleaseLyrics</a> - <a href="http://www.releaselyrics.com/sitemap/">Sitemap</a> - <a href="http://www.releaselyrics.com/privacy/" rel="nofollow">Privacy</a>
|
||||
<div class="footer-fb">
|
||||
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.releaselyrics.com%2F&width=90&height=21&colorscheme=light&layout=button_count&action=like&show_faces=false&send=false&locale=en_US" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:90px; height:21px;" allowTransparency="true"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="position: absolute; top: 10px; right: 5px;">
|
||||
<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.releaselyrics.com%2F&width=90&height=21&colorscheme=light&layout=button_count&action=like&show_faces=false&send=false&locale=en_US" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:90px; height:21px;" allowTransparency="true"></iframe>
|
||||
<img src="http://www.releaselyrics.com/img/spacer.php?id=81b60e0864983e12fc2efa74c7cbe35f" />
|
||||
</div>
|
||||
|
||||
<div style="position: absolute; top: 50px; right: 10px; color: #b0b0b0;">
|
||||
<script type="text/javascript" src="http://www.releaselyrics.com/js/var.js"></script>
|
||||
<script type="text/javascript" src="http://www.releaselyrics.com/js/ads.js"></script>
|
||||
<script>
|
||||
document.write(spacerOuter);
|
||||
document.write(spacerInner);
|
||||
</script>
|
||||
<img src="http://www.releaselyrics.com/img/spacer-raw.php?t=1397918737" />
|
||||
</div>
|
||||
|
||||
<div class="media-top">
|
||||
<script>
|
||||
cf_page_artist = "The Beatles";
|
||||
cf_page_song = "Lady Madonna";
|
||||
cf_adunit_id = "39382396";
|
||||
cf_hostname = "srv.clickfuse.com";
|
||||
</script>
|
||||
<script src="//srv.clickfuse.com/showads/showad.js"></script>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
cf_page_artist = "The Beatles";
|
||||
cf_page_song = "Lady Madonna";
|
||||
cf_adunit_id = "39382397";
|
||||
cf_flex = true;
|
||||
cf_hostname = "srv.clickfuse.com";
|
||||
</script>
|
||||
<script src="//srv.clickfuse.com/showads/showad.js"></script>
|
||||
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||
ga('create', 'UA-47346127-1', 'releaselyrics.com'); ga('send', 'pageview');
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because one or more lines are too long
1
test/rsrc/lyrics/songlyricscom/ladymadonnalyrics.txt
Normal file
1
test/rsrc/lyrics/songlyricscom/ladymadonnalyrics.txt
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,370 @@
|
|||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og='http://ogp.me/ns#'>
|
||||
<head >
|
||||
<title>The Beatles : "Lady Madonna" Lyrics</title>
|
||||
<meta name="Keywords" content="Lady Madonna Lyrics, The Beatles Lady Madonna lyrics, The Beatles lyrics, Lady Madonna song lyrics, lyrics to Lady Madonna" />
|
||||
<meta name="Description" content="Download The Beatles - Lady Madonna lyrics. Lady Madonna, children at your feet. Wonder how you manage to make ends meet. Who finds the money when you pay" />
|
||||
|
||||
<meta property="og:title" content="The Beatles : "Lady Madonna" Lyrics" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="http://www.sweetslyrics.com/761696.The%20Beatles%20-%20Lady%20Madonna.html" />
|
||||
<meta property="og:image" content="" />
|
||||
<meta property="og:site_name" content="SweetsLyrics.com" />
|
||||
|
||||
<meta property="fb:admins" content="100000669073286,100001040919657" />
|
||||
<meta property="fb:moderator" content="100000669073286,100001040919657" />
|
||||
<meta property="fb:app_id" content="148684708661418" />
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<meta name="robots" content="index,follow" />
|
||||
<meta http-equiv="Content-Language" content="EN" />
|
||||
<meta name="verify-v1" content="TkeB0SciPOHHKIAx2Afl06K/LgisxjTSH9RHM80clEY=" />
|
||||
<meta name="google-site-verification" content="_OHdNPcQmbcshBodst4wbGUAbJGSgmSFHkGZu30EohU" />
|
||||
<link rel="canonical" href="http://www.sweetslyrics.com/761696.The%20Beatles%20-%20Lady%20Madonna.html" /> <link rel="alternate" type="application/rss+xml" title="Sweetslyrics - Top 50 artists of the month" href="http://www.sweetslyrics.com/rss-month-artist.xml" />
|
||||
<link rel="alternate" type="application/rss+xml" title="Sweetslyrics - Music news of the month" href="http://www.sweetslyrics.com/rss-news.xml" />
|
||||
|
||||
<link href="http://www.sweetslyrics.com/css/template_style.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>-->
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
||||
<script src="http://www.sweetslyrics.com/js/functii.js" type="text/javascript"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div style="width:960px; margin-left:auto; margin-right:auto;">
|
||||
<div id="header">
|
||||
<div class="s_title"><h1>Lady Madonna lyrics</h1></div>
|
||||
<div id="header_logo"><a href="http://www.sweetslyrics.com" title="Lyrics"><img src="http://www.sweetslyrics.com/images/template/Logo_sw.png" width="200" height="65" alt="Lyrics" /></a></div>
|
||||
|
||||
<div id="t_right">
|
||||
<form style="clear:right; float:right;" action="http://www.sweetslyrics.com/search.php" method="post" id="search">
|
||||
<div id="top_search">
|
||||
<a id="by-category"><img width="17" height="15" alt="search_arrow" src="http://www.sweetslyrics.com/media/img/search_arrow.png" style="float:left; margin:2px 4px 0px 0px;" /><span id="serch_by">by song title</span></a>
|
||||
<input type="hidden" name="search" id="search_tip" value="title" />
|
||||
<input name="searchtext" style="width:170px; height: 18px; border:1px solid #e1e1e1; padding: 1px; margin-top:4px; float:left;" onfocus="if (this.value == 'Search here') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search here';}" value="Search here" />
|
||||
<div style="width:32px; height:32px; float:left; background: url(http://www.sweetslyrics.com/images/template/sprite-1-sweets.png) no-repeat top left; background-position: 0 -210px; cursor:pointer;" onclick="document.getElementById('search').submit();"></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="height:55px; width:960px;">
|
||||
<div id="nav_menu_left"></div>
|
||||
<div class="navigation">
|
||||
<a href="http://www.sweetslyrics.com/" title="lyrics">Home</a>
|
||||
<a href="http://www.sweetslyrics.com/news.php" title="news">News</a>
|
||||
<a href="http://www.sweetslyrics.com/updates.html" title="lyrics updates">Updates</a>
|
||||
<a href="http://www.sweetslyrics.com/reviews.php" title="reviews">Reviews</a>
|
||||
<a href="http://www.sweetslyrics.com/add.php" title="add lyrics">Add</a>
|
||||
|
||||
</div>
|
||||
<div id="nav_menu_right"></div>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<div id="content_left">
|
||||
|
||||
<div style="overflow:auto;">
|
||||
<div style="float:left; width:485px; font-size:18px; color:#4075ba; padding:0px 0px 0px 10px;">
|
||||
<div id="legend">
|
||||
<a href="http://www.sweetslyrics.com/">Home</a> >> <a href="http://www.sweetslyrics.com/T.html">Artists starting with T</a> >> <a href="http://www.sweetslyrics.com/The Beatles.html">The Beatles Lyrics</a> >> Lady Madonna
|
||||
</div>
|
||||
</div>
|
||||
<div style="float:right; width:100px; height:22px;">
|
||||
<form name="addmee" id="addmee" action="http://www.sweetslyrics.com/requests.php" method="post"><img src="http://www.sweetslyrics.com/images/template/rate_emty_star.png" id="img1" alt="" onmouseout="mouseOutImage(1,0)" onmouseover="mouseOverImage(1)" onclick="doYouWantTo(1)" width="19" height="18" style="margin:0px padding:0px;" /><img src="http://www.sweetslyrics.com/images/template/rate_emty_star.png" id="img2" alt="" onmouseout="mouseOutImage(2,0)" onmouseover="mouseOverImage(2)" onclick="doYouWantTo(2)" width="19" height="18" style="margin:0px padding:0px;" /><img src="http://www.sweetslyrics.com/images/template/rate_emty_star.png" id="img3" alt="" onmouseout="mouseOutImage(3,0)" onmouseover="mouseOverImage(3)" onclick="doYouWantTo(3)" width="19" height="18" style="margin:0px padding:0px;" /><img src="http://www.sweetslyrics.com/images/template/rate_emty_star.png" id="img4" alt="" onmouseout="mouseOutImage(4,0)" onmouseover="mouseOverImage(4)" onclick="doYouWantTo(4)" width="19" height="18" style="margin:0px padding:0px;" /><img src="http://www.sweetslyrics.com/images/template/rate_emty_star.png" id="img5" alt="" onmouseout="mouseOutImage(5,0)" onmouseover="mouseOverImage(5)" onclick="doYouWantTo(5)" width="19" height="18" style="margin:0px padding:0px;" /><input type="hidden" name="rate" value="0" id="rate" /><input type="hidden" value="761686" name="lyricid" /></form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="width:600px; padding-left:10px; margin-bottom:10px; padding-bottom:10px; overflow:auto;">
|
||||
<div style="float:right; width:430px;">
|
||||
<h2 style="margin:10px 0px; padding:0px; color:#4075ba; font-weight:normal; font-size:16px; text-align:center;">The Beatles - Lady Madonna Lyrics</h2>
|
||||
<div style="color:#F00; text-align:center; margin:15px 10px 10px; font-size:12px;"><a href="http://www.ringtonematcher.com/co/ringtonematcher/02/noc.asp?sid=SWLYtop&artist=The+Beatles&song=Lady+Madonna" target="_blank" rel="nofollow" style="text-decoration:underline; color:#FF0000; font-size:14px; font-weight:bold"><img src="http://www.sweetslyrics.com/images/phone_icon_blue_small_trans.gif" width="16" height="17" border="0" alt="" /> Send "Lady Madonna" Ringtone to your Cell <img src="http://www.sweetslyrics.com/images/phone_icon_blue_small_trans_right.gif" width="16" height="17" border="0" alt="" /></a></div>
|
||||
<div style="font-size:12px; padding-left:20px;">Lady Madonna, children at your feet.<br />
|
||||
Wonder how you manage to make ends meet.<br />
|
||||
Who finds the money when you pay the rent?<br />
|
||||
Did you think that money was heaven sent?<br />
|
||||
<br />
|
||||
Friday night arrives without a suitcase.<br />
|
||||
Sunday morning creeping like a nun.<br />
|
||||
Monday's child has learned to tie his bootlace.<br />
|
||||
See how they run...<br />
|
||||
<br />
|
||||
Lady Madonna, baby at your breast.<br />
|
||||
Wonders how you manage to feed the rest.<br />
|
||||
<br />
|
||||
(Sax solo)<br />
|
||||
<br />
|
||||
See how they run...<br />
|
||||
<br />
|
||||
Lady Madonna, lying on the bed.<br />
|
||||
Listen to the music playing in your head.<br />
|
||||
<br />
|
||||
Tuesday afternoon is never ending.<br />
|
||||
Wednesday morning papers didn't come.<br />
|
||||
Thursday night your stockings needed mending.<br />
|
||||
See how they run...<br />
|
||||
<br />
|
||||
Lady Madonna, children at your feet.<br />
|
||||
Wonder how you manage to make ends meet.</div>
|
||||
|
||||
</div>
|
||||
<div style="float:left; width:160px;"><div style="float:left; width:160px;">
|
||||
<div style="float:left; text-align:left; width:160px; margin:0px 0px 18px 0px;">
|
||||
<div style="width:80px; text-align:left; margin-bottom:5px; height:90px; float:left;"><iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2FSong.lyrics.videos.and.news%3Fref%3Dhl&send=false&layout=box_count&width=160&show_faces=false&action=like&colorscheme=light&font&height=90" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:160px; height:90px;"></iframe></div>
|
||||
<div style="width:80px; text-align:left; margin-bottom:5px; height:90px; float:left;"><!-- Place this tag where you want the +1 button to render. -->
|
||||
<div class="g-plusone" data-size="tall"></div>
|
||||
|
||||
<!-- Place this tag after the last +1 button tag. -->
|
||||
<script type="text/javascript">
|
||||
(function() {
|
||||
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
|
||||
po.src = 'https://apis.google.com/js/plusone.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
|
||||
})();
|
||||
</script></div>
|
||||
<div style="margin-bottom:10px; float:left; margin-top:-15px; width:180px;">
|
||||
<a href="http://www.sweetslyrics.com/The Beatles.html" style="display:inline; margin:0px; padding:0px; font-size:14px; font-weight:bold; color:#474744; text-decoration:none;">Go to all<br /><span style="color:#0262b6;">The Beatles Lyrics</span></a>
|
||||
</div>
|
||||
<a href="javascript:load()" rel="nofollow" style="line-height:35px; margin-left:15px; font-size:12px; color:#4e4e4e; text-decoration:none; background-image:url(http://www.sweetslyrics.com/images/box_email.jpg); background-repeat:no-repeat; padding:3px 0px 1px 27px; height:27px;">Email</a><br />
|
||||
<a href="javascript:load1()" rel="nofollow" style="line-height:25px; margin-left:15px; font-size:12px; color:#4e4e4e; text-decoration:none; background-image:url(http://www.sweetslyrics.com/images/print.jpg); background-repeat:no-repeat; padding:3px 0px 3px 22px;">Print</a><br />
|
||||
</div>
|
||||
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "pub-3610829201646579";
|
||||
/* 160x600, created 2/6/08 */
|
||||
google_ad_slot = "1996949704";
|
||||
google_ad_width = 160;
|
||||
google_ad_height = 600;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script>
|
||||
</div></div>
|
||||
</div>
|
||||
<div style="color:#F00; text-align:center; margin:0px 10px 10px 10px; font-size:12px;"><a href="http://www.ringtonematcher.com/co/ringtonematcher/02/noc.asp?sid=SWLYbott&artist=The+Beatles&song=Lady+Madonna" target="_blank" rel="nofollow" style="text-decoration:underline; color:#FF0000; font-size:14px; font-weight:bold"><img src="http://www.sweetslyrics.com/images/phone_icon_blue_small_trans.gif" width="16" height="17" border="0" alt="" /> Send "Lady Madonna" Ringtone to your Cell <img src="http://www.sweetslyrics.com/images/phone_icon_blue_small_trans_right.gif" width="16" height="17" border="0" alt="" /></a></div>
|
||||
|
||||
<div style="margin:10px;">
|
||||
<form name="correct_lyrics" id="correct_lyrics" action="http://www.sweetslyrics.com/correct.php" method="post" style="display:inline;">
|
||||
<input type="hidden" name="lid" value="761696" />
|
||||
<a rel="nofollow" onclick="document.correct_lyrics.submit();" style="cursor:pointer; padding:0px; font-size:16px; font-weight:bold; color:#474744; margin-left:125px; text-decoration:none;">Correct <span style="color:#0262b6;">these Lyrics</span></a>
|
||||
</form>
|
||||
<a onclick="window.open('http://www.sweetslyrics.com/download.php?id=761686');" rel="nofollow" style="cursor:pointer; font-size:16px; color:#474744; margin-left:40px; text-decoration:none; font-weight:bold;">download <span style="color:#0262b6;">txt</span></a>
|
||||
</div>
|
||||
|
||||
<div style="margin:15px 0px 10px 10px;">
|
||||
<div class="fb-comments" data-href="http://www.sweetslyrics.com/761696.The%20Beatles%20-%20Lady%20Madonna.html" data-width="590" data-num-posts="10"></div>
|
||||
</div>
|
||||
|
||||
<div style="color:#474744; font-size:14px; font-weight:bold; margin:0px 5px;">
|
||||
Top <span style="color:#0262b6;">New Lyrics</span>
|
||||
<div style="height:10px; border-top:2px solid #0C61BD; background-color:#d9ebfe;"></div>
|
||||
</div>
|
||||
<div style="padding:5px 10px 5px 10px; text-align:justify;"><a style="font-size:12px; text-decoration:none; color:#4e4e4e; font-size:12px;" href="http://www.sweetslyrics.com/1039832.DRAKE - Hold On Were Going Home.html" >DRAKE - Hold On Were Going Home</a> <a style="font-size:12px; text-decoration:none; color:#0363B7; font-size:12px;" href="http://www.sweetslyrics.com/1040056.Katy Perry - Roar.html" >Katy Perry - Roar</a> <a style="font-size:12px; text-decoration:none; color:#4e4e4e; font-size:12px;" href="http://www.sweetslyrics.com/1040207.Jacquees - Won't Turn it Down.html" >Jacquees - Won't Turn it Down</a> <a style="font-size:12px; text-decoration:none; color:#0363B7; font-size:12px;" href="http://www.sweetslyrics.com/1040197.K. Michelle - Ride Out.html" >K. Michelle - Ride Out</a> <a style="font-size:12px; text-decoration:none; color:#4e4e4e; font-size:12px;" href="http://www.sweetslyrics.com/1040225.Meek Mill - Lil Nigga Snupe.html" >Meek Mill - Lil Nigga Snupe</a> <a style="font-size:12px; text-decoration:none; color:#0363B7; font-size:12px;" href="http://www.sweetslyrics.com/1039555.NICKI MINAJ - I Wanna Be With You.html" >NICKI MINAJ - I Wanna Be With You</a> <a style="font-size:12px; text-decoration:none; color:#4e4e4e; font-size:12px;" href="http://www.sweetslyrics.com/1039663.DRAKE - All Me.html" >DRAKE - All Me</a> <a style="font-size:12px; text-decoration:none; color:#0363B7; font-size:12px;" href="http://www.sweetslyrics.com/1039513.ROMEO SANTOS - Propuesta Indecente.html" >ROMEO SANTOS - Propuesta Indecente</a> <a style="font-size:12px; text-decoration:none; color:#4e4e4e; font-size:12px;" href="http://www.sweetslyrics.com/1039838.Dillon Francis - Without You.html" >Dillon Francis - Without You</a> <a style="font-size:12px; text-decoration:none; color:#0363B7; font-size:12px;" href="http://www.sweetslyrics.com/1040520.Sam Smith - Nirvana.html" >Sam Smith - Nirvana</a> <a style="font-size:12px; text-decoration:none; color:#4e4e4e; font-size:12px;" href="http://www.sweetslyrics.com/1040356.Chiddy Bang - Breathe.html" >Chiddy Bang - Breathe</a> <a style="font-size:12px; text-decoration:none; color:#0363B7; font-size:12px;" href="http://www.sweetslyrics.com/1039521.HAIM - The Wire.html" >HAIM - The Wire</a> <a style="font-size:12px; text-decoration:none; color:#4e4e4e; font-size:12px;" href="http://www.sweetslyrics.com/1040428.Travis Garland - Clouds.html" >Travis Garland - Clouds</a> <a style="font-size:12px; text-decoration:none; color:#0363B7; font-size:12px;" href="http://www.sweetslyrics.com/1040169.BIG SEAN - Control.html" >BIG SEAN - Control</a> <a style="font-size:12px; text-decoration:none; color:#4e4e4e; font-size:12px;" href="http://www.sweetslyrics.com/1039602.Parachute - Hurricane.html" >Parachute - Hurricane</a> </div>
|
||||
<div style="height:40px;"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
function load() {
|
||||
var load = window.open('http://www.sweetslyrics.com/mailto.php?lyricid=761686','','scrollbars=no,menubar=no,height=450,width=800,resizable=yes,toolbar=no,location=no,status=no');
|
||||
}
|
||||
|
||||
function load1() {
|
||||
var load = window.open('http://www.sweetslyrics.com/print_lyric.php?lyricid=761686','','scrollbars=no,menubar=no,height=700,width=800,resizable=yes,toolbar=no,location=no,status=no');
|
||||
}
|
||||
// -->
|
||||
|
||||
function mouseOverImage(id)
|
||||
{
|
||||
for(i=1;i<=id;i++)
|
||||
document.getElementById("img"+i).src = "http://www.sweetslyrics.com/images/template/rate_full_star.png";
|
||||
|
||||
for(i=id+1;i<=5;i++)
|
||||
document.getElementById("img"+i).src = "http://www.sweetslyrics.com/images/template/rate_emty_star.png";
|
||||
}
|
||||
|
||||
function mouseOutImage(id,rate)
|
||||
{
|
||||
//for(i=1;i<=(rate/10)*10;i++)
|
||||
//document.getElementById("img"+i).src = "http://www.sweetslyrics.com/images/template/rate_full_star.png";
|
||||
|
||||
var jumatate=parseInt(rate)==rate?0:1
|
||||
|
||||
for(i=parseInt(rate)+jumatate+1;i<=5;i++)
|
||||
document.getElementById("img"+i).src = "http://www.sweetslyrics.com/images/template/rate_emty_star.png";
|
||||
|
||||
for(i=1;i<=parseInt(rate)+jumatate;i++)
|
||||
document.getElementById("img"+i).src = "http://www.sweetslyrics.com/images/template/rate_full_star.png";
|
||||
|
||||
//if(jumatate==1)
|
||||
//document.getElementById("img"+(parseInt(rate)+1)).src = "http://www.sweetslyrics.com/images/rating_star_half.png";
|
||||
}
|
||||
|
||||
function doYouWantTo(id)
|
||||
{
|
||||
doIt=confirm('Rate this song with '+ id);
|
||||
if(doIt){
|
||||
document.getElementById("rate").value=id;
|
||||
document.addmee.submit();
|
||||
}
|
||||
else{
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<div id="fb-root"></div>
|
||||
<script>(function(d, s, id) {
|
||||
var js, fjs = d.getElementsByTagName(s)[0];
|
||||
if (d.getElementById(id)) return;
|
||||
js = d.createElement(s); js.id = id;
|
||||
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
|
||||
fjs.parentNode.insertBefore(js, fjs);
|
||||
}(document, 'script', 'facebook-jssdk'));
|
||||
</script>
|
||||
</div>
|
||||
|
||||
<div style="width:310px; float:right;">
|
||||
|
||||
<div style="width:300px; height:250px; margin:0px 10px 8px 0px;">
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-3610829201646579";
|
||||
/* Patrat stanga sus */
|
||||
google_ad_slot = "7972370556";
|
||||
google_ad_width = 300;
|
||||
google_ad_height = 250;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script>
|
||||
</div>
|
||||
<div style="color:#474744; font-size:14px; font-weight:bold; margin-right:5px; margin-top:15px;">
|
||||
<h2 style="margin:0; padding:0; font-size:14px;">Most Searched<br />
|
||||
<span style="color:#0262b6;">The Beatles Lyrics</span></h2>
|
||||
<div style="height:10px; border-top:2px solid #0C61BD; background-color:#d9ebfe;"></div>
|
||||
</div>
|
||||
<div style="overflow:auto; width:300px; margin:10px 10px 10px 0px;">
|
||||
<div style="width:245px; padding:0px 0px 0px 5px;" class="lyric_ul_list">
|
||||
<ul style="list-style:none; padding:1px; margin:2px 2px 2px 5px; font-size:13px;"><li style="list-style:none;"><span style="color:#19752b; font-size:11px;">1.</span> <a href="http://www.sweetslyrics.com/761687.The Beatles - Yesterday.html">Yesterday</a></li><li style="list-style:none;"><span style="color:#19752b; font-size:11px;">2.</span> <a href="http://www.sweetslyrics.com/814279.The Beatles - Lucy in the Sky with Diamonds.html">Lucy in the Sky with Diamonds</a></li><li style="list-style:none;"><span style="color:#19752b; font-size:11px;">3.</span> <a href="http://www.sweetslyrics.com/761697.The Beatles - Hey Jude.html">Hey Jude</a></li><li style="list-style:none;"><span style="color:#19752b; font-size:11px;">4.</span> <a href="http://www.sweetslyrics.com/814285.The Beatles - Back In The USSR.html">Back In The USSR</a></li><li style="list-style:none;"><span style="color:#19752b; font-size:11px;">5.</span> <a href="http://www.sweetslyrics.com/757274.The Beatles - Here Comes the Sun.html">Here Comes the Sun</a></li><li style="list-style:none;"><span style="color:#19752b; font-size:11px;">6.</span> <a href="http://www.sweetslyrics.com/761694.The Beatles - All You Need Is Love.html">All You Need Is Love</a></li><li style="list-style:none;"><span style="color:#19752b; font-size:11px;">7.</span> <a href="http://www.sweetslyrics.com/814284.The Beatles - Revolution.html">Revolution</a></li><li style="list-style:none;"><span style="color:#19752b; font-size:11px;">8.</span> <a href="http://www.sweetslyrics.com/814280.The Beatles - A Day in the Life.html">A Day in the Life</a></li><li style="list-style:none;"><span style="color:#19752b; font-size:11px;">9.</span> <a href="http://www.sweetslyrics.com/814281.The Beatles - I Am the Walrus.html">I Am the Walrus</a></li><li style="list-style:none;"><span style="color:#19752b; font-size:11px;">10.</span> <a href="http://www.sweetslyrics.com/814278.The Beatles - Sgt. Pepper's Lonely Hearts Club Band.html">Sgt. Pepper's Lonely Hearts Club Band</a></li></ul></div></div>
|
||||
|
||||
|
||||
<div style="color:#474744; font-size:14px; font-weight:bold; margin-right:5px; margin-top:15px;">
|
||||
Sweetslyrics <span style="color:#0262b6;">Charts</span>
|
||||
<div style="height:10px; border-top:2px solid #0C61BD; background-color:#d9ebfe;"></div>
|
||||
</div>
|
||||
<div style="overflow:auto; width:300px; margin:10px 10px 10px 0px;">
|
||||
<div style="width:245px; padding:0px 0px 0px 20px;" class="lyric_ul_list">
|
||||
<ul>
|
||||
<li><a href="http://www.sweetslyrics.com/chart-Hot Country Songs"><b>Hot Country Songs</b></a></li>
|
||||
<li><a href="http://www.sweetslyrics.com/chart-UK Singles Chart"><b>UK Singles Chart</b></a></li>
|
||||
<li><a href="http://www.sweetslyrics.com/chart-Hot Modern Rock Tracks"><b>Hot Modern Rock Tracks</b></a></li>
|
||||
<li><a href="http://www.sweetslyrics.com/chart-MTV European Top 20"><b>MTV European Top 20</b></a></li>
|
||||
<li><a href="http://www.sweetslyrics.com/chart-Hot Latin Songs"><b>Hot Latin Songs</b></a></li>
|
||||
<li><a href="http://www.sweetslyrics.com/chart-Hot Christian Songs"><b>Hot Christian Songs</b></a></li>
|
||||
<li><a href="http://www.sweetslyrics.com/chart-Billboard Hot 100"><b>Billboard Hot 100</b></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div style="width:300px; height:250px; margin:0px 10px 8px 0px;">
|
||||
<script type="text/javascript"><!--
|
||||
google_ad_client = "ca-pub-3610829201646579";
|
||||
/* Patrat stanga jos */
|
||||
google_ad_slot = "4925491932";
|
||||
google_ad_width = 300;
|
||||
google_ad_height = 250;
|
||||
//-->
|
||||
</script>
|
||||
<script type="text/javascript"
|
||||
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
<br />
|
||||
<script type="text/javascript">
|
||||
function poll_vote(a)
|
||||
{
|
||||
$("#poll_past").load("http://www.sweetslyrics.com/scripts/ajax.php?act=poll_vote&vars=" + a);
|
||||
}
|
||||
|
||||
function random_poll(a)
|
||||
{
|
||||
$("#poll_past").load("http://www.sweetslyrics.com/scripts/ajax.php?act=rand_poll&vars=" + a);
|
||||
}
|
||||
</script>
|
||||
|
||||
<div id="poll_area">
|
||||
<div class="title_blue_big poll_title">Sweetslyrics Poll</div>
|
||||
<div id="poll_past">
|
||||
<div class="title_blue_big poll_name">Which would you rather Mcdonalds or burger king?</div>
|
||||
<div style="width:200px; padding:0px 0px 0px 5px;" class="lyric_ul_list">
|
||||
<ul><li>
|
||||
<input type="radio" value="_1" id="_1" name="_1" onclick="poll_vote('2473-1')" />
|
||||
<label for="_1" onclick="poll_vote('2473-1')">Mcdonalds</label></li><li>
|
||||
<input type="radio" value="_2" id="_2" name="_2" onclick="poll_vote('2473-2')" />
|
||||
<label for="_2" onclick="poll_vote('2473-2')">Burger king</label></li></ul></div></div></div><br /> </div>
|
||||
</div>
|
||||
|
||||
<div id="footer" style="height:125px;">
|
||||
<div style="float:left; width:275px; padding-left:25px; height:125px; color:#ffffff; font-size:11px;">
|
||||
<div style="margin:5px 10px 10px 10px; padding:1px; font-size:18px; font-weight:bold;">Fast Links</div><br />
|
||||
<a style="" href="http://www.sweetslyrics.com/guestbook.php">Guestbook</a><br />
|
||||
<a style="color:#ffffff; text-decoration:none;" href="http://www.sweetslyrics.com/contact.php">Contact us</a><br />
|
||||
<a style="color:#ffffff; text-decoration:none;" href="http://www.sweetslyrics.com/dmca.php">DMCA</a><br />
|
||||
<a style="color:#ffffff; text-decoration:none;" href="http://www.sweetslyrics.com/request.php">Request Lyrics</a>
|
||||
</div>
|
||||
<div style="height:125px; width:2px; background-color:#231f20; float:left;"></div>
|
||||
<div style="height:125px; width:1px; background-color:#a8a9ad; float:left;"></div>
|
||||
<div style="padding-left:25px; float:left; width:290px; height:125px; color:#ffffff; font-size:11px;">
|
||||
<div style="margin:5px 10px 10px 10px; padding:1px; font-size:18px; font-weight:bold;">Copyright</div><br />
|
||||
All lyrics are property and copyright of their owners<br /><br />
|
||||
All lyrics provided for educational purposes only<br />
|
||||
Copyright © www.sweetslyrics.com
|
||||
</div>
|
||||
<div style="height:125px; width:2px; background-color:#231f20; float:left;"></div>
|
||||
<div style="height:125px; width:1px; background-color:#a8a9ad; float:left;"></div>
|
||||
<div style="padding-left:25px; float:left; width:291px; height:125px; color:#ffffff; font-size:11px;">
|
||||
<div style="margin:5px 10px 10px 10px; padding:1px; font-size:18px; font-weight:bold;">Privacy</div><br />
|
||||
Please read our <a href="http://www.sweetslyrics.com/privacy.php">privacy policy</a><br />
|
||||
Page generation - 0.0031s <br />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Begin comScore Tag -->
|
||||
<script type="text/javascript">
|
||||
document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js'%3E%3C/script%3E"));
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
// Note: it's important to keep these in separate script blocks
|
||||
COMSCORE.beacon({
|
||||
c1: 2,
|
||||
c2: "6772046",
|
||||
c3: "",
|
||||
c4: "www.sweetslyrics.com/761696.The%20Beatles%20-%20Lady%20Madonna.html",
|
||||
c5: "",
|
||||
c6: "",
|
||||
c15: ""
|
||||
});
|
||||
</script>
|
||||
<noscript>
|
||||
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6772046&c3=&c4=www.sweetslyrics.com/761696.The%20Beatles%20-%20Lady%20Madonna.html&c5=&c6=&c15=&cj=1" />
|
||||
</noscript>
|
||||
<!-- End comScore Tag -->
|
||||
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-519917-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -71,6 +71,21 @@ class LyricsPluginTest(unittest.TestCase):
|
|||
'Song'
|
||||
)
|
||||
|
||||
def test_remove_credits(self):
|
||||
self.assertEqual(
|
||||
lyrics.remove_credits("""It's close to midnight
|
||||
Lyrics brought by example.com"""),
|
||||
"It's close to midnight"
|
||||
)
|
||||
self.assertEqual(
|
||||
lyrics.remove_credits("""Lyrics brought by example.com"""),
|
||||
""
|
||||
)
|
||||
text = """Look at all the shit that i done bought her
|
||||
See lyrics ain't nothin
|
||||
if the beat aint crackin"""
|
||||
self.assertEqual(lyrics.remove_credits(text), text)
|
||||
|
||||
|
||||
def suite():
|
||||
return unittest.TestLoader().loadTestsFromName(__name__)
|
||||
|
|
|
|||
Loading…
Reference in a new issue