SHOW:
|
|
- or go back to the newest paste.
| 1 | <html> | |
| 2 | <head> | |
| 3 | ||
| 4 | <title>BLOG NAME HERE</title> | |
| 5 | ||
| 6 | ||
| 7 | <script> | |
| 8 | window.defaultStatus=" pinkness & kawaiiness <3 "</script> | |
| 9 | ||
| 10 | <meta content="progid:DXImageTransform.Microsoft.GradientWipe(Duration=2)" http-equiv="Page-Exit"> | |
| 11 | <meta content="progid:DXImageTransform.Microsoft.GradientWipe(Duration=2)" http-equiv="Page-Enter"> | |
| 12 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| 13 | <script type="text/javascript"> | |
| 14 | ||
| 15 | /*********************************************** | |
| 16 | * Disable select-text script- �© Dynamic Drive (www.dynamicdrive.com) | |
| 17 | * This notice MUST stay intact for legal use | |
| 18 | * Visit http://www.dynamicdrive.com/ for full source code | |
| 19 | ***********************************************/ | |
| 20 | ||
| 21 | ||
| 22 | ||
| 23 | omitformtags=omitformtags.join("|")
| |
| 24 | ||
| 25 | function disableselect(e){
| |
| 26 | if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1) | |
| 27 | return false | |
| 28 | } | |
| 29 | ||
| 30 | function reEnable(){
| |
| 31 | return true | |
| 32 | } | |
| 33 | ||
| 34 | if (typeof document.onselectstart!="undefined") | |
| 35 | document.onselectstart=new Function ("return false")
| |
| 36 | else{
| |
| 37 | document.onmousedown=disableselect | |
| 38 | document.onmouseup=reEnable | |
| 39 | } | |
| 40 | ||
| 41 | </script> | |
| 42 | ||
| 43 | </head><body> | |
| 44 | ||
| 45 | <style> | |
| 46 | <!-- | |
| 47 | ||
| 48 | .skin{
| |
| 49 | position:absolute; | |
| 50 | width:70px; | |
| 51 | border:2px dashed #FF9999; | |
| 52 | background-color:white; | |
| 53 | line-height:12px; | |
| 54 | color: #000000; | |
| 55 | cursor:crosshair; | |
| 56 | font-size:8pt; | |
| 57 | font-family:Tahoma; | |
| 58 | padding-bottom:5px; | |
| 59 | padding-top:5px; | |
| 60 | padding-left:5px; | |
| 61 | padding-right:2px; | |
| 62 | z-index:50; | |
| 63 | visibility:hidden; | |
| 64 | } | |
| 65 | ||
| 66 | .menuitems{
| |
| 67 | padding-left:30px; | |
| 68 | padding-right:30px; | |
| 69 | } | |
| 70 | --> | |
| 71 | </style> | |
| 72 | <div id="ie5menu" class="skin" onMouseover="highlightie5(event)" onMouseout="lowlightie5(event)" onClick="jumptoie5(event)" display:none> | |
| 73 | No right clicking here.Don’t want any rippers to be ripping.Want codes/pics/anything?Just ASK. | |
| 74 | </div> | |
| 75 | ||
| 76 | ||
| 77 | <script language="JavaScript1.2"> | |
| 78 | ||
| 79 | //set this variable to 1 if you wish the URLs of the highlighted menu to be displayed in the status bar | |
| 80 | var display_url=0 | |
| 81 | ||
| 82 | var ie5=document.all&&document.getElementById | |
| 83 | var ns6=document.getElementById&&!document.all | |
| 84 | if (ie5||ns6) | |
| 85 | var menuobj=document.getElementById("ie5menu")
| |
| 86 | ||
| 87 | function showmenuie5(e){
| |
| 88 | //Find out how close the mouse is to the corner of the window | |
| 89 | var rightedge=ie5? document.body.clientWidth-event.clientX : window.innerWidth-e.clientX | |
| 90 | var bottomedge=ie5? document.body.clientHeight-event.clientY : window.innerHeight-e.clientY | |
| 91 | ||
| 92 | //if the horizontal distance isn't enough to accomodate the width of the context menu | |
| 93 | if (rightedge<menuobj.offsetWidth) | |
| 94 | //move the horizontal position of the menu to the left by it's width | |
| 95 | menuobj.style.left=ie5? document.body.scrollLeft+event.clientX-menuobj.offsetWidth : window.pageXOffset+e.clientX-menuobj.offsetWidth | |
| 96 | else | |
| 97 | //position the horizontal position of the menu where the mouse was clicked | |
| 98 | menuobj.style.left=ie5? document.body.scrollLeft+event.clientX : window.pageXOffset+e.clientX | |
| 99 | ||
| 100 | //same concept with the vertical position | |
| 101 | if (bottomedge<menuobj.offsetHeight) | |
| 102 | menuobj.style.top=ie5? document.body.scrollTop+event.clientY-menuobj.offsetHeight : window.pageYOffset+e.clientY-menuobj.offsetHeight | |
| 103 | else | |
| 104 | menuobj.style.top=ie5? document.body.scrollTop+event.clientY : window.pageYOffset+e.clientY | |
| 105 | ||
| 106 | menuobj.style.visibility="visible" | |
| 107 | return false | |
| 108 | } | |
| 109 | ||
| 110 | function hidemenuie5(e){
| |
| 111 | menuobj.style.visibility="hidden" | |
| 112 | } | |
| 113 | ||
| 114 | function highlightie5(e){
| |
| 115 | var firingobj=ie5? event.srcElement : e.target | |
| 116 | if (firingobj.className=="menuitems"||ns6&&firingobj.parentNode.className=="menuitems"){
| |
| 117 | if (ns6&&firingobj.parentNode.className=="menuitems") firingobj=firingobj.parentNode //up one node | |
| 118 | firingobj.style.backgroundColor="highlight" | |
| 119 | firingobj.style.color="E6E4E5" | |
| 120 | if (display_url==1) | |
| 121 | window.status=event.srcElement.url | |
| 122 | } | |
| 123 | } | |
| 124 | ||
| 125 | function lowlightie5(e){
| |
| 126 | var firingobj=ie5? event.srcElement : e.target | |
| 127 | if (firingobj.className=="menuitems"||ns6&&firingobj.parentNode.className=="menuitems"){
| |
| 128 | if (ns6&&firingobj.parentNode.className=="menuitems") firingobj=firingobj.parentNode //up one node | |
| 129 | firingobj.style.backgroundColor="" | |
| 130 | firingobj.style.color="826A92" | |
| 131 | window.status='' | |
| 132 | } | |
| 133 | } | |
| 134 | ||
| 135 | function jumptoie5(e){
| |
| 136 | var firingobj=ie5? event.srcElement : e.target | |
| 137 | if (firingobj.className=="menuitems"||ns6&&firingobj.parentNode.className=="menuitems"){
| |
| 138 | if (ns6&&firingobj.parentNode.className=="menuitems") firingobj=firingobj.parentNode | |
| 139 | if (firingobj.getAttribute("target"))
| |
| 140 | window.open(firingobj.getAttribute("url"),firingobj.getAttribute("target"))
| |
| 141 | else | |
| 142 | window.location=firingobj.getAttribute("url")
| |
| 143 | } | |
| 144 | } | |
| 145 | ||
| 146 | if (ie5||ns6){
| |
| 147 | menuobj.style.display='' | |
| 148 | document.oncontextmenu=showmenuie5 | |
| 149 | document.onclick=hidemenuie5 | |
| 150 | } | |
| 151 | ||
| 152 | </script> | |
| 153 | ||
| 154 | ||
| 155 | <style> | |
| 156 | ||
| 157 | body | |
| 158 | {
| |
| 159 | background:url(http://i192.photobucket.com/albums/z53/mggjiang/pinkpolkadots.gif); | |
| 160 | background-color:#FFFFFF; | |
| 161 | background-repeat:none; | |
| 162 | background-position:bottom right; | |
| 163 | color: black; | |
| 164 | ||
| 165 | font-weight:none; | |
| 166 | font-family: Trebuchet MS; | |
| 167 | font-size: 8pt; | |
| 168 | margin: 0px auto; | |
| 169 | padding: 0px; | |
| 170 | text-align: left; | |
| 171 | ||
| 172 | scrollbar-face-color : white; | |
| 173 | scrollbar-highlight-color : FFCCCC; | |
| 174 | scrollbar-3dlight-color : FFCCCC; | |
| 175 | scrollbar-shadow-color : FFCCCC; | |
| 176 | scrollbar-darkshadow-color : FFCCCC; | |
| 177 | scrollbar-track-color : white; | |
| 178 | scrollbar-arrow-color : silver; | |
| 179 | } | |
| 180 | ||
| 181 | a:link, a:visited, a:active {
| |
| 182 | text-decoration: none; | |
| 183 | font-weight: none; | |
| 184 | color: gray; | |
| 185 | background:none; | |
| 186 | border:0px solid; | |
| 187 | border-color: none; | |
| 188 | } | |
| 189 | ||
| 190 | a:hover {
| |
| 191 | text-decoration: none; | |
| 192 | font-weight: none; | |
| 193 | font-size: 8pt; | |
| 194 | color: white; | |
| 195 | text-transform:none; | |
| 196 | border-bottom: 1px dashed black; | |
| 197 | border-top: 1px dashed black; | |
| 198 | border-right: 1px dashed black; | |
| 199 | border-left: 1px dashed black; | |
| 200 | background-color: #FCABA2; | |
| 201 | cursor:url(http://www.boomspeed.com/dorischu/cursor/0093.ani); | |
| 202 | } | |
| 203 | ||
| 204 | .h1 {
| |
| 205 | font-family: "Trebuchet MS"; | |
| 206 | font-size: 7pt; | |
| 207 | line-height: 0px; | |
| 208 | color:red; | |
| 209 | border-bottom: 0px double white; | |
| 210 | font-weight:none; | |
| 211 | text-align:center; | |
| 212 | padding:1px; | |
| 213 | } | |
| 214 | ||
| 215 | .h2 {
| |
| 216 | font-family:Trebuchet MS; | |
| 217 | font-weight: none; | |
| 218 | font-size: 8pt; | |
| 219 | background:transparent; | |
| 220 | color:black; | |
| 221 | border-bottom: 1px double #000000; | |
| 222 | border-right: 1px double #000000; | |
| 223 | border-top: 1px double #000000; | |
| 224 | border-left: 1px double #000000; | |
| 225 | text-align:left; | |
| 226 | padding: 10px; | |
| 227 | } | |
| 228 | ||
| 229 | .h3 {
| |
| 230 | font-family:Trebuchet MS; | |
| 231 | font-weight: none; | |
| 232 | font-size: 18pt; | |
| 233 | letter-spacing:-2pt; | |
| 234 | font-color:Black; | |
| 235 | line-height: 10pt; | |
| 236 | text-align:center; | |
| 237 | border-bottom: 1px dashed #7A7A80; | |
| 238 | border-right: 15px double #7A7A80; | |
| 239 | padding:1px; | |
| 240 | } | |
| 241 | ||
| 242 | .h4 {
| |
| 243 | font-family:Trebuchet MS; | |
| 244 | font-weight: none; | |
| 245 | font-size: 8pt; | |
| 246 | background:transparent; | |
| 247 | color:black; | |
| 248 | border-bottom: 1px double #000000; | |
| 249 | border-right: 1px double #000000; | |
| 250 | border-top: 1px double #000000; | |
| 251 | border-left: 1px double #000000; | |
| 252 | text-align:left; | |
| 253 | padding: 10px; | |
| 254 | } | |
| 255 | ||
| 256 | blockquote {
| |
| 257 | font-family: Trebuchet MS; | |
| 258 | line-height: 110%; | |
| 259 | color: #000000; | |
| 260 | font-size: 8pt; | |
| 261 | background-color: #FFFFFF; | |
| 262 | border-right:7px double pink; | |
| 263 | border-top:2px dashed pink; | |
| 264 | border-bottom:2px dashed pink; | |
| 265 | border-left:2px dashed pink; | |
| 266 | text-align: justify; | |
| 267 | padding: 5px; | |
| 268 | ||
| 269 | } | |
| 270 | ||
| 271 | #navbar-iframe {
| |
| 272 | height: 0px; | |
| 273 | visibility: hidden; | |
| 274 | display: none; | |
| 275 | } | |
| 276 | .head5 {
| |
| 277 | color:white; | |
| 278 | background-color:#F9A7B0; | |
| 279 | font-family:Trebuchet MS; | |
| 280 | font-size:11px; | |
| 281 | font-weight:none; | |
| 282 | text-transform: none; | |
| 283 | letter-spacing: 0px; | |
| 284 | text-align:center; | |
| 285 | ||
| 286 | .head6{
| |
| 287 | color:white; | |
| 288 | background-color:#FCABA2; | |
| 289 | font-family:Trebuchet MS; | |
| 290 | font-size:11px; | |
| 291 | font-weight:none; | |
| 292 | text-transform: none; | |
| 293 | letter-spacing: 0px; | |
| 294 | text-align:center;} | |
| 295 | ||
| 296 | b { text-decoration: bold; font-weight: bold; color: black; }
| |
| 297 | u { text-decoration: underline; border-bottom: 1px solid FCABA2; }
| |
| 298 | s { text-decoration: strikeout; color: black; }
| |
| 299 | ||
| 300 | ||
| 301 | <script> | |
| 302 | ||
| 303 | <style type="text/css">@import url(http://www.blogger.com/css/navbar/main.css); | |
| 304 | @import url(http://www.blogger.com/css/navbar/1.css); | |
| 305 | div.b-mobile {display:none;}
| |
| 306 | </style> | |
| 307 | ||
| 308 | <noembed> | |
| 309 | <body></noembed> | |
| 310 | ||
| 311 | ||
| 312 | ||
| 313 | <div id=image style="position:absolute; border:0px double #999999; top:0;left:0;"> | |
| 314 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/cuteribbons.gif" border="0" alt=""></a> | |
| 315 | </div> | |
| 316 | <div id=image style="position:absolute; border:0px double #999999; top:0;left:216;"> | |
| 317 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/cuteribbons.gif" border="0" alt=""></a> | |
| 318 | </div> | |
| 319 | <div id=image style="position:absolute; border:0px double #999999; top:0;left:432;"> | |
| 320 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/cuteribbons.gif" border="0" alt=""></a> | |
| 321 | </div> | |
| 322 | <div id=image style="position:absolute; border:0px double #999999; top:0;left:648;"> | |
| 323 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/cuteribbons.gif" border="0" alt=""></a> | |
| 324 | </div> | |
| 325 | ||
| 326 | <div id=image style="position:absolute; border:0px double #999999; top:0;left:863"> | |
| 327 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/cuteribbons.gif" border="0" alt=""></a> | |
| 328 | </div> | |
| 329 | ||
| 330 | ||
| 331 | ||
| 332 | <div style="position: absolute; padding: 30px; left: 260px; top: 50px;overflow"> | |
| 333 | <u><b>You are currently @</u></b><br><br> | |
| 334 | ||
| 335 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/memo.gif" border="0" alt=""> | |
| 336 | <b><font face="Trebuchet MS" font color="#FCABA2" Size="6">YOUR TUMBLR NAME HERE</b></font> | |
| 337 | <br> | |
| 338 | </div> | |
| 339 | ||
| 340 | <div style="position: absolute; padding: 30px; left: 580px; top:65px;overflow"> | |
| 341 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/37.gif" border="0" alt=""> | |
| 342 | </div> | |
| 343 | ||
| 344 | ||
| 345 | ||
| 346 | ||
| 347 | ||
| 348 | ||
| 349 | <div style="position: absolute; top: 175; left: 281; width:470" | |
| 350 | background-color: transparent; | |
| 351 | padding-top: 5; | |
| 352 | padding-bottom: 5; | |
| 353 | padding-left: 5; | |
| 354 | padding-right: 5; | |
| 355 | filter:alpha(opacity=100);"> | |
| 356 | <br> | |
| 357 | ||
| 358 | ||
| 359 | ||
| 360 | ||
| 361 | <ol id="posts"> | |
| 362 | {block:Posts}
| |
| 363 | {block:Text}
| |
| 364 | <li class="post text"> | |
| 365 | {block:Title}
| |
| 366 | <h3><a href="{Permalink}">{Title}</a></h3>
| |
| 367 | {/block:Title}
| |
| 368 | ||
| 369 | {Body}
| |
| 370 | </li> | |
| 371 | {/block:Text}
| |
| 372 | ||
| 373 | {block:Photo}
| |
| 374 | <li class="post photo"> | |
| 375 | <img src="{PhotoURL-400}" alt="{PhotoAlt}"/>
| |
| 376 | ||
| 377 | {block:Caption}
| |
| 378 | <div class="caption">{Caption}</div>
| |
| 379 | {/block:Caption}
| |
| 380 | </li> | |
| 381 | {/block:Photo}
| |
| 382 | ||
| 383 | {block:Photoset}
| |
| 384 | <li class="post photoset"> | |
| 385 | {Photoset-400}
| |
| 386 | ||
| 387 | {block:Caption}
| |
| 388 | <div class="caption">{Caption}</div>
| |
| 389 | {/block:Caption}
| |
| 390 | </li> | |
| 391 | {/block:Photoset}
| |
| 392 | ||
| 393 | {block:Quote}
| |
| 394 | <li class="post quote"> | |
| 395 | "{Quote}"
| |
| 396 | ||
| 397 | {block:Source}
| |
| 398 | <div class="source">{Source}</div>
| |
| 399 | {/block:Source}
| |
| 400 | </li> | |
| 401 | {/block:Quote}
| |
| 402 | ||
| 403 | {block:Link}
| |
| 404 | <li class="post link"> | |
| 405 | <a href="{URL}" class="link" {Target}>{Name}</a>
| |
| 406 | ||
| 407 | {block:Description}
| |
| 408 | <div class="description">{Description}</div>
| |
| 409 | {/block:Description}
| |
| 410 | </li> | |
| 411 | {/block:Link}
| |
| 412 | ||
| 413 | {block:Chat}
| |
| 414 | <li class="post chat"> | |
| 415 | {block:Title}
| |
| 416 | <h3><a href="{Permalink}">{Title}</a></h3>
| |
| 417 | {/block:Title}
| |
| 418 | ||
| 419 | <ul class="chat"> | |
| 420 | {block:Lines}
| |
| 421 | <li class="{Alt} user_{UserNumber}">
| |
| 422 | {block:Label}
| |
| 423 | <span class="label">{Label}</span>
| |
| 424 | {/block:Label}
| |
| 425 | ||
| 426 | {Line}
| |
| 427 | </li> | |
| 428 | {/block:Lines}
| |
| 429 | </ul> | |
| 430 | </li> | |
| 431 | {/block:Chat}
| |
| 432 | ||
| 433 | {block:Video}
| |
| 434 | <li class="post video"> | |
| 435 | {Video-400}
| |
| 436 | ||
| 437 | {block:Caption}
| |
| 438 | <div class="caption">{Caption}</div>
| |
| 439 | {/block:Caption}
| |
| 440 | </li> | |
| 441 | {/block:Video}
| |
| 442 | ||
| 443 | {block:Audio}
| |
| 444 | <li class="post audio"> | |
| 445 | {AudioPlayerBlack}
| |
| 446 | ||
| 447 | {block:Caption}
| |
| 448 | <div class="caption">{Caption}</div>
| |
| 449 | {/block:Caption}
| |
| 450 | </li> | |
| 451 | {/block:Audio}
| |
| 452 | {/block:Posts}
| |
| 453 | </ol> | |
| 454 | ||
| 455 | ||
| 456 | ||
| 457 | ||
| 458 | </div> | |
| 459 | ||
| 460 | <div style="position: absolute; top: 50px; left: 25px; width:254px; | |
| 461 | background-color: transparent; | |
| 462 | padding-top: 5; | |
| 463 | padding-bottom: 5; | |
| 464 | padding-left: 5; | |
| 465 | padding-right: 5;"> | |
| 466 | <br> | |
| 467 | ||
| 468 | <div class="h4"> | |
| 469 | <div class="h3">♥ Disclaimer</div> | |
| 470 | <div class="head5">Rules</div> | |
| 471 | <center><img src="http://i192.photobucket.com/albums/z53/mggjiang/ribbonbbow.gif" border="0" alt=""><br> | |
| 472 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/welcome3.gif" border="0" alt="Welcome!"><br> | |
| 473 | <marquee>Welcome to my blog!</marquee><br> | |
| 474 | Put you disclaimer here<br> | |
| 475 | </center><br> | |
| 476 | ||
| 477 | </div><br> | |
| 478 | ||
| 479 | <div class="h4"> | |
| 480 | <div class="h3">♥ Navigation</div> | |
| 481 | <div class="head5">Navigate my blog</div> | |
| 482 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/ribbonbbow.gif" border="0" alt=""><br> | |
| 483 | <center><a href="/">Home</a><br> | |
| 484 | <a href="/ask">Ask</a><br> | |
| 485 | <a href="/archive">Archive</a><br> | |
| 486 | <a href="/rss">RSS</a><br> | |
| 487 | <a href="url">Link text</a><br> | |
| 488 | </center> | |
| 489 | </div><br> | |
| 490 | ||
| 491 | ||
| 492 | ||
| 493 | <div class="h4"> | |
| 494 | <div class="h3">♥ External</div> | |
| 495 | <div class="head5">Links</div> | |
| 496 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/ribbonbbow.gif" border="0" alt=""><br> | |
| 497 | <div align=center> | |
| 498 | <a href="url">Link 1</a><br> | |
| 499 | <a href="url">Link 2</a><br> | |
| 500 | <a href="url">Link 3</a><br> | |
| 501 | <a href="url">Link 4</a><br> | |
| 502 | <a href="url">Link 5</a><br> | |
| 503 | ||
| 504 | </div></div></br> | |
| 505 | ||
| 506 | <div class="h4"> | |
| 507 | <div class="h3">♥ Credits</div> | |
| 508 | <div class="head5">clap!clap! :)</div> | |
| 509 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/ribbonbbow.gif" border="0" alt=""><br> | |
| 510 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/bullet.gif" border="0" alt=""> Tumblr Theme : <a href="http://dailylovebymonique.tumblr.com/">Daily Love by Monique</a>.<a </div><br> | |
| 511 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/bullet.gif" border="0" alt=""> Blogskin : <a href="http://www.blogskins.com/me/bluepink-">%BLUE.pink-</a><br> | |
| 512 | ||
| 513 | ||
| 514 | ||
| 515 | <div style="position: absolute; top: 0; left: 730; width:270; | |
| 516 | background-color: transparent; | |
| 517 | padding-top: 5; | |
| 518 | padding-bottom: 5; | |
| 519 | padding-left: 5; | |
| 520 | padding-right: 5;"> | |
| 521 | <br> | |
| 522 | <div class="h4"> | |
| 523 | <div class="h3">♥ Me, Myself & I</div> | |
| 524 | <div class="head5">All about me!</div> | |
| 525 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/ribbonbbow.gif" border="0" alt=""><br> | |
| 526 | ||
| 527 | <center><img src="http://i192.photobucket.com/albums/z53/mggjiang/bow.gif" border="0" alt=""> <u><b>Your Name Here</b></u> <img src="http://i192.photobucket.com/albums/z53/mggjiang/bow.gif" border="0" alt=""><br> | |
| 528 | D.O.B : __/__/__<br> | |
| 529 | School : ___________<br> | |
| 530 | Hobby : _________<br> | |
| 531 | ||
| 532 | </div><br> | |
| 533 | ||
| 534 | <div class="h4"> | |
| 535 | <div class="h3">♥ About the Blog</div> | |
| 536 | <div class="head5">These are my feelings..this is my life</div> | |
| 537 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/ribbonbbow.gif" border="0" alt=""><br> | |
| 538 | blog descrip here blog descrip hereblog descrip here blog descrip hereblog descrip here blog descrip hereblog descrip here blog descrip hereblog descrip here blog descrip hereblog descrip here blog descrip hereblog descrip here blog descrip here | |
| 539 | </div><br> | |
| 540 | ||
| 541 | ||
| 542 | <div class="h4"> | |
| 543 | <div class="h3">♥ Jukebox</div> | |
| 544 | <div class="head5">music rox my life</div> | |
| 545 | <img src="http://i192.photobucket.com/albums/z53/mggjiang/ribbonbbow.gif" border="0" alt=""><br> | |
| 546 | <center><img src="http://i192.photobucket.com/albums/z53/mggjiang/music.gif" border="0" alt="Music Beats"><br> | |
| 547 | Music code here.<br> | |
| 548 | </div><br> | |
| 549 | ||
| 550 | <style><!--BODY{cursor:url("http://www.boomspeed.com/dorischu/cursor/0085.ani");}-->
| |
| 551 | </style> | |
| 552 | ||
| 553 | ||
| 554 | </head> | |
| 555 | </html> |