1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!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> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>last_fm</title> </head> <body bgcolor="#ffffff"> <p align="left"></p> <!-- ************* Flash file by Robert Bleeker, last.fm user: mscmks *************** --> <!-- copy the code block below here to your own HTML page -->
<!-- you will have to replace the two spots where the username is set inside the code below, currently look for 'username=yourUsernameHere' and --> <!-- place your own last.fm username instead of the 'yourUsernameHere' parts (remember to do both instances to cover all browser displays) -->
<!-- You can now adjust the height AND the width to your preferred setting, height="280" shows 10 items -->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="960" height="560" id="last_fm" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="last_fm.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <param name="FlashVars" value="username=mscmks&defaultList=0" /> <embed src="last_fm.swf" FlashVars="username=mscmks&defaultList=0" quality="high" bgcolor="#ffffff" width="960" height="560" name="last_fm" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object>
<!-- end code block -->
</body> </html>
|