Advertisement
Cuddly-Themes

Pink Belly

Dec 18th, 2012
1,404
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.10 KB | None | 0 0
  1. <html lang="en">
  2.  
  3. <head>
  4.  
  5.  
  6. <script type="text/javascript">
  7. // <![CDATA[
  8. var colour="#ffdfdf"; // in addition to "random" can be set to any valid colour eg "#ffdfdf" or "red"
  9. var sparkles=50;
  10.  
  11. /****************************
  12. * Tinkerbell Magic Sparkle *
  13. *(c)2005-12 mf2fm web-design*
  14. * http://www.mf2fm.com/rv *
  15. * DON'T EDIT BELOW THIS BOX *
  16. ****************************/
  17. var x=ox=400;
  18. var y=oy=300;
  19. var swide=800;
  20. var shigh=600;
  21. var sleft=sdown=0;
  22. var tiny=new Array();
  23. var star=new Array();
  24. var starv=new Array();
  25. var starx=new Array();
  26. var stary=new Array();
  27. var tinyx=new Array();
  28. var tinyy=new Array();
  29. var tinyv=new Array();
  30.  
  31. window.onload=function() { if (document.getElementById) {
  32. var i, rats, rlef, rdow;
  33. for (var i=0; i<sparkles; i++) {
  34. var rats=createDiv(3, 3);
  35. rats.style.visibility="hidden";
  36. rats.style.zIndex="999";
  37. document.body.appendChild(tiny[i]=rats);
  38. starv[i]=0;
  39. tinyv[i]=0;
  40. var rats=createDiv(5, 5);
  41. rats.style.backgroundColor="transparent";
  42. rats.style.visibility="hidden";
  43. rats.style.zIndex="999";
  44. var rlef=createDiv(1, 5);
  45. var rdow=createDiv(5, 1);
  46. rats.appendChild(rlef);
  47. rats.appendChild(rdow);
  48. rlef.style.top="2px";
  49. rlef.style.left="0px";
  50. rdow.style.top="0px";
  51. rdow.style.left="2px";
  52. document.body.appendChild(star[i]=rats);
  53. }
  54. set_width();
  55. sparkle();
  56. }}
  57.  
  58. function sparkle() {
  59. var c;
  60. if (x!=ox || y!=oy) {
  61. ox=x;
  62. oy=y;
  63. for (c=0; c<sparkles; c++) if (!starv[c]) {
  64. star[c].style.left=(starx[c]=x)+"px";
  65. star[c].style.top=(stary[c]=y)+"px";
  66. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  67. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  68. star[c].style.visibility="visible";
  69. starv[c]=50;
  70. break;
  71. }
  72. }
  73. for (c=0; c<sparkles; c++) {
  74. if (starv[c]) update_star(c);
  75. if (tinyv[c]) update_tiny(c);
  76. }
  77. setTimeout("sparkle()", 40);
  78. }
  79.  
  80. function update_star(i) {
  81. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  82. if (starv[i]) {
  83. stary[i]+=1+Math.random()*3;
  84. starx[i]+=(i%5-2)/5;
  85. if (stary[i]<shigh+sdown) {
  86. star[i].style.top=stary[i]+"px";
  87. star[i].style.left=starx[i]+"px";
  88. }
  89. else {
  90. star[i].style.visibility="hidden";
  91. starv[i]=0;
  92. return;
  93. }
  94. }
  95. else {
  96. tinyv[i]=50;
  97. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  98. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  99. tiny[i].style.width="2px";
  100. tiny[i].style.height="2px";
  101. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  102. star[i].style.visibility="hidden";
  103. tiny[i].style.visibility="visible"
  104. }
  105. }
  106.  
  107. function update_tiny(i) {
  108. if (--tinyv[i]==25) {
  109. tiny[i].style.width="1px";
  110. tiny[i].style.height="1px";
  111. }
  112. if (tinyv[i]) {
  113. tinyy[i]+=1+Math.random()*3;
  114. tinyx[i]+=(i%5-2)/5;
  115. if (tinyy[i]<shigh+sdown) {
  116. tiny[i].style.top=tinyy[i]+"px";
  117. tiny[i].style.left=tinyx[i]+"px";
  118. }
  119. else {
  120. tiny[i].style.visibility="hidden";
  121. tinyv[i]=0;
  122. return;
  123. }
  124. }
  125. else tiny[i].style.visibility="hidden";
  126. }
  127.  
  128. document.onmousemove=mouse;
  129. function mouse(e) {
  130. if (e) {
  131. y=e.pageY;
  132. x=e.pageX;
  133. }
  134. else {
  135. set_scroll();
  136. y=event.y+sdown;
  137. x=event.x+sleft;
  138. }
  139. }
  140.  
  141. window.onscroll=set_scroll;
  142. function set_scroll() {
  143. if (typeof(self.pageYOffset)=='number') {
  144. sdown=self.pageYOffset;
  145. sleft=self.pageXOffset;
  146. }
  147. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  148. sdown=document.body.scrollTop;
  149. sleft=document.body.scrollLeft;
  150. }
  151. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  152. sleft=document.documentElement.scrollLeft;
  153. sdown=document.documentElement.scrollTop;
  154. }
  155. else {
  156. sdown=0;
  157. sleft=0;
  158. }
  159. }
  160.  
  161. window.onresize=set_width;
  162. function set_width() {
  163. var sw_min=999999;
  164. var sh_min=999999;
  165. if (document.documentElement && document.documentElement.clientWidth) {
  166. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  167. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  168. }
  169. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  170. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  171. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  172. }
  173. if (document.body.clientWidth) {
  174. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  175. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  176. }
  177. if (sw_min==999999 || sh_min==999999) {
  178. sw_min=800;
  179. sh_min=600;
  180. }
  181. swide=sw_min;
  182. shigh=sh_min;
  183. }
  184.  
  185. function createDiv(height, width) {
  186. var div=document.createElement("div");
  187. div.style.position="absolute";
  188. div.style.height=height+"px";
  189. div.style.width=width+"px";
  190. div.style.overflow="hidden";
  191. return (div);
  192. }
  193.  
  194. function newColour() {
  195. var c=new Array();
  196. c[0]=255;
  197. c[1]=Math.floor(Math.random()*256);
  198. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  199. c.sort(function(){return (0.5 - Math.random());});
  200. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  201. }
  202. // ]]>
  203. </script>
  204.  
  205.  
  206. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  207.  
  208. <title>{title}</title>
  209. <link rel="shortcut icon" href="http://drikoti.net/Goodies/Favicons/Gifs/034.gif"/>
  210. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  211. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  212.  
  213. <meta name="image:Background" content="http://25.media.tumblr.com/tumblr_m5fq3g4ZyW1r0qsyqo1_100.jpg">
  214. <meta name="image:Sidebar" content="http://data.whicdn.com/images/14411660/267624_189358774453333_189139327808611_433803_4533495_n_large.jpg">
  215. <meta name="image:Header" content="http://media.tumblr.com/tumblr_lpwohdMqbP1qcn2vb.png">
  216. <meta name="image:Head" content="http://27.media.tumblr.com/tumblr_lq9rmvDH2T1qjex46o4_250.jpg">
  217.  
  218. <meta name="if:Fade Images" content="0">
  219. <meta name="if:Header" content="1">
  220.  
  221. <meta name="color:Quote" content="#ffa9a9">
  222. <meta name="color:Title" content="#ffbfbf">
  223. <meta name="color:Permalink" content="#ffdfdf">
  224.  
  225. <meta name="text:Link Name 1" content="Link 1">
  226. <meta name="text:Link Url 1" content="http://">
  227. <meta name="text:Link Name 2" content="Link 2">
  228. <meta name="text:Link Url 2" content="http://">
  229. <meta name="text:Link Name 3" content="Link 3">
  230. <meta name="text:Link Url 3" content="http://">
  231. <meta name="text:Link Name 4" content="Link 4">
  232. <meta name="text:Link Url 4" content="http://">
  233.  
  234. <script type="text/javascript"
  235. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  236. <script>
  237. $(document).ready(function() {
  238. //
  239. $('a.poplight[href^=#]').click(function() {
  240. var popID = $(this).attr('rel'); //Get Popup Name
  241. var popURL = $(this).attr('href'); //Get Popup href to define size
  242. var query= popURL.split('?');
  243. var dim= query[1].split('&');
  244. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  245. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  246. var popMargTop = ($('#' + popID).height() + 80) / 2;
  247. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  248. //Apply Margin to Popup
  249. $('#' + popID).css({
  250. 'margin-top' : -popMargTop,
  251. 'margin-left' : -popMargLeft
  252. });
  253. $('body').append('<div id="fade"></div>');
  254. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  255. return false;
  256. });
  257. $('a.close, #fade').live('click', function() {
  258. $('#fade , .popup_block').fadeOut(function() {
  259. $('#fade, a.close').remove(); //fade them both out
  260. });
  261. return false;
  262. });
  263. });
  264. </script>
  265.  
  266.  
  267. <SCRIPT TYPE="text/javascript">
  268. <!--
  269. //Disable right click script
  270. //visit http://www.rainbow.arch.scriptmania.com/scripts/
  271. var message="Sorry, right-click has been disabled";
  272. ///////////////////////////////////
  273. function clickIE() {if (document.all) {(message);return false;}}
  274. function clickNS(e) {if
  275. (document.layers||(document.getElementById&&!document.all)) {
  276. if (e.which==2||e.which==3) {(message);return false;}}}
  277. if (document.layers)
  278. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  279. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  280. document.oncontextmenu=new Function("return false")
  281. // -->
  282. </SCRIPT>
  283.  
  284. <style type="text/css">
  285.  
  286. @font-face { font-family: "bebas"; src: url('http://static.tumblr.com/cvlbtjz/cnsln9tpp/bebasneue.otf'); }
  287.  
  288. body{
  289. color:black;
  290. font-family: Trebuchet MS;
  291. font-size:10px;
  292. color: #ffa9a9;
  293. background-image:url(http://25.media.tumblr.com/tumblr_m5fq3g4ZyW1r0qsyqo1_100.jpg);
  294. cursor:url(http://static.tumblr.com/vwhgv4q/hO3mcwj92/cats.jpg), auto;
  295. }
  296.  
  297. a:link, a:active, a:visited{
  298. color: #000;
  299. text-decoration: none;
  300. -webkit-transition: opacity 0.3s linear;
  301. -webkit-transition: all 0.3s ease-in-out;
  302. -moz-transition: all 0.3s ease-in-out;
  303. -o-transition: all 0.3s ease-in-out;
  304. }
  305.  
  306. a:hover {
  307. text-shadow: 1px 1px 1px #ffbfbf;
  308. -webkit-transition:color 500ms ease-in;
  309. -moz-transition:color 500ms ease-in;
  310. -o-transition:color 500ms ease-in;
  311. color: transparent;
  312. }
  313.  
  314. #fade {
  315. display: none;
  316. background: #000;
  317. position: fixed; left: 0; top: 0;
  318. width: 100%; height: 100%;
  319. opacity: .80;
  320. z-index: 9999;
  321. }
  322.  
  323. .popup_block{
  324. display: none;
  325. background: url(http://media.tumblr.com/tumblr_lpwovn6XPC1qcn2vb.png);
  326. padding: 20px;
  327. border: 1px solid #000;
  328. float: left;
  329. font-size: 10px;
  330. position: fixed;
  331. top: 50%; left: 50%;
  332. z-index: 99999;
  333. -webkit-box-shadow: 0px 0px 20px #000;
  334. -moz-box-shadow: 0px 0px 20px #000;
  335. box-shadow: 0px 0px 20px #000;
  336. -webkit-border-radius: 10px;
  337. -moz-border-radius: 10px;
  338. border-radius: 10px;
  339. }
  340.  
  341. .bubble{background:#ffdfdf; text-align:left; padding:10px; border-radius: 0px 40px 40px 0px;}
  342. .bubble2{background:#ffbfbf; text-align:center; padding:10px; border-radius: 40px 0px 0px 40px;}
  343.  
  344. #content{
  345. width:490px;
  346. margin-left:5px;
  347. float:left;
  348. margin-top:8px;
  349. border: 3px solid #ffdfdf;
  350. background-color: #FFFAF7;
  351. padding:5px;
  352. }
  353.  
  354. #entry{
  355. padding:2px;
  356. background-color: #FFFAF7;
  357. width:480px;
  358. float:left;
  359. margin:2px;
  360. }
  361.  
  362. #entry .permalink {
  363. opacity:0;
  364. width:20px;
  365. height:15px;
  366. font-family:'trebuchet MS';
  367. margin-top:8px;
  368. line-height:15px;
  369. margin-left:-5px;
  370. font-size:9px;
  371. border:1px solid #ffdfdf;
  372. position:absolute;
  373. text-transform:uppercase;
  374. background:transparent;
  375. letter-spacing:2px;
  376. text-align:center;
  377. overflow:hidden;
  378. -webkit-transition-timing-function: ease-out;
  379. -webkit-transition-duration: .5s;
  380. -moz-transition-timing-function: ease-out;
  381. -moz-transition-duration: .5s;
  382. }
  383.  
  384. #entry:hover .permalink {
  385. background:#ffa9a9;
  386. width:400px;
  387. opacity:.9;
  388. text-align:center;
  389. padding:3px;
  390. color:#fff;
  391. margin-top:8px;
  392. line-height:16px;
  393. height:15px;
  394. border-radius: 0px 20px 20px 0px;
  395. overflow:visible;
  396. -moz-box-shadow: 0 0 10px #fff;
  397. -webkit-box-shadow: 0px 0px 10px #fff;
  398. -webkit-transition-timing-function: ease-out;
  399. -webkit-transition-duration: .3s;
  400. -moz-transition-timing-function: ease-out;
  401. -moz-transition-duration: .3s;
  402. }
  403.  
  404. #entry .reblog {
  405. opacity:0;
  406. width:20px;
  407. height:15px;
  408. font-family:'trebuchet MS';
  409. margin-top:40px;
  410. line-height:15px;
  411. margin-left:460px;
  412. font-size:9px;
  413. border:1px solid #ffdfdf;
  414. position:absolute;
  415. text-transform:uppercase;
  416. background:transparent;
  417. letter-spacing:2px;
  418. text-align:center;
  419. overflow:hidden;
  420. -webkit-transition-timing-function: ease-out;
  421. -webkit-transition-duration: .5s;
  422. -moz-transition-timing-function: ease-out;
  423. -moz-transition-duration: .5s;
  424. }
  425.  
  426. #entry:hover .reblog {
  427. background:#fff;
  428. width:400px;
  429. opacity:.9;
  430. text-align:center;
  431. padding:3px;
  432. color:#ffa9a9;
  433. margin-top:40px;
  434. margin-left:80px;
  435. line-height:16px;
  436. height:15px;
  437. border-radius: 20px 0px 0px 20px;
  438. overflow:visible;
  439. -moz-box-shadow: 0 0 10px #fff;
  440. -webkit-box-shadow: 0px 0px 10px #fff;
  441. -webkit-transition-timing-function: ease-out;
  442. -webkit-transition-duration: .3s;
  443. -moz-transition-timing-function: ease-out;
  444. -moz-transition-duration: .3s;
  445. }
  446.  
  447. #center{
  448. width:780px;
  449. padding:5px;
  450. overflow-y:hidden;
  451. }
  452.  
  453. #center2{
  454. background-image: url(http://i301.photobucket.com/albums/nn67/sugarsprinkies/creambunny_BG44.gif);
  455. width:790px;
  456. margin-top:50px;
  457. padding-bottom:10px;
  458. box-shadow: 0px 0px 7px #ffbfbf;
  459. position:absolute;
  460. margin-left:150px;
  461. overflow-y:hidden;
  462. }
  463.  
  464. #sidebar{
  465. background-color: #FFFAF7;
  466. border: 3px solid #ffdfdf;
  467. width:250px;
  468. margin-left:5px;
  469. float:left;
  470. margin-top:8px;
  471. padding:3px;
  472. }
  473.  
  474. div.navigate a{
  475. background: transparent;
  476. font-size: 11px;
  477. color: #888888;
  478. font-family: craftygirls;
  479. border-bottom: 1px dotted #ffdfdf;
  480. display:block;
  481. width: 80px;
  482. height: 20px;
  483. text-align: center;
  484. padding-top:4px;
  485. margin-left:2px;
  486. margin-top:2px;
  487. position:relative;
  488. text-align: right;
  489. text-transform: ;
  490. z-index:1;
  491. display: inline-block;
  492. }
  493.  
  494. div.navigate a:hover{
  495. color:#ffdfdf;
  496. text-align:left;
  497. letter-spacing: 1px;
  498. -webkit-transition: all 0.4s ease-out;
  499. -moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  500.  
  501. blockquote{border-left:1px solid #ddd; padding:5px;}
  502.  
  503. ul, ol, li{list-style-image:url(http://media.tumblr.com/tumblr_m57i1dncbq1rqpuwv.gif);}
  504.  
  505. .heart2 {display : block; font-size: 20px; font-family: 'Cedarville Cursive'; line-height: 10px; border-bottom : 1px solid #eee; text-indent : 5px; vertical-align : middle; -webkit-transition-duration: .50s; padding-left : 10px;padding-bottom : 2px;}
  506.  
  507. .heart2:hover {display : block; font-size: 20px; font-family: 'Cedarville Cursive'; line-height: 10px; border-bottom : 1px dashed #eee; text-indent : 5px; vertical-align : middle; -webkit-transition-duration: .50s; padding-left : 50px; padding-bottom : 2px;}
  508.  
  509. h1{
  510. border-top:1px dashed #ddd;
  511. }
  512.  
  513. h2{
  514. background-image:url({image:Head});
  515. font-family: 'Cookie';
  516. font-size:30px;
  517. text-align:center;
  518. margin-bottom:2px;
  519. color: #ffdfdf;
  520. letter-spacing:1px;
  521. text-shadow:2px 2px 1px #ffbfbf;
  522. border-left: 20px solid #ffdfdf;
  523. }
  524.  
  525. h3{
  526. font-family:'Cookie';
  527. font-size:30px;
  528. text-align:center;
  529. color: {color:Title};
  530. margin-bottom:-5px;
  531. }
  532.  
  533. h4{
  534. font-family:'Amatic SC';
  535. font-size:35px;
  536. text-align:center;
  537. text-shadow:0px 0px 5px #ffdfdf;
  538. margin:-5px;
  539. color: {color:Title};
  540. }
  541.  
  542. h5{
  543. font-family:'Cedarville Cursive';
  544. font-size:25px;
  545. color: {color:Quote};
  546. line-height:20px;
  547. margin:-5px;
  548. }
  549.  
  550. {block:ifFadeImages}
  551.  
  552. img{
  553. -webkit-transition: opacity 0.8s linear;
  554. opacity: 0.60;
  555. }
  556. img:hover{
  557. -webkit-transition: opacity 0.8s linear;
  558. opacity: 1;
  559. }
  560.  
  561. {/block:ifFadeImages}
  562.  
  563. #header{background-image: url('http://24.media.tumblr.com/tumblr_m5g05c4YdK1r0qsyqo1_400.png'); z-index:-99; top: 0px; left: 0px; width: 100%; height: 300px; position: fixed;}
  564.  
  565. {CustomCSS]</style>
  566.  
  567. </head>
  568.  
  569. <div style=" background-image: url('http://media.tumblr.com/tumblr_losl9lWY2D1qepbs7.png'); top: 0px; left: 0px; width: 50px; height: 100%; z-index: 100; position: fixed;"></div>
  570. <div style=" background-image: url('http://media.tumblr.com/tumblr_losl8xuJeF1qepbs7.png'); top: 0px; right: 0px; width: 50px; height: 100%; z-index: 100; position: fixed;"></div>
  571.  
  572.  
  573. <link href='http://fonts.googleapis.com/css?family=Amatic+SC:700' rel='stylesheet' type='text/css'>
  574. <link href='http://fonts.googleapis.com/css?family=Cedarville+Cursive' rel='stylesheet' type='text/css'>
  575. <link href='http://fonts.googleapis.com/css?family=Cookie' rel='stylesheet' type='text/css'>
  576. <link href='http://fonts.googleapis.com/css?family=Sacramento' rel='stylesheet' type='text/css'>
  577. <link href='http://fonts.googleapis.com/css?family=Rochester' rel='stylesheet' type='text/css'>
  578.  
  579. <div id="header"></div>
  580.  
  581. <body onselectstart="return false">
  582.  
  583. <font face="Cookie" color="#ffcfcf"><div style="font-size:100px;text-shadow:2px 2px 1px #ffa9a9;"><strong></strong></div></font>
  584.  
  585. <div id="center2">
  586. <div id="center">
  587. <div id="sidebar">
  588.  
  589. <center><img src="http://i268.photobucket.com/albums/jj20/Joca_boca/296ljl5.png" style="-webkit-transform: rotate(180deg); -moz-transform: rotate(180deg);"></center>
  590.  
  591. <h2>Blogette <img src="http://media.tumblr.com/tumblr_m6lwvxHTYu1rrzsji.gif"></h2>
  592. <image src="{image:Sidebar}" width="110" align="right"><div align="justify">{Description}</div>
  593.  
  594. <h2>Navigate <img src="http://media.tumblr.com/tumblr_m6lwvxHTYu1rrzsji.gif"></h2><p>
  595.  
  596. <a href="/"><img src="http://25.media.tumblr.com/tumblr_m5crj4p5lY1r0qsyqo1_100.png" title="Go home"></a>
  597. <a href="#?w=500" rel="mailbox" class="poplight"><img src="http://24.media.tumblr.com/tumblr_m5crjjfQbi1r0qsyqo1_100.png" title="Share your secrets"></a>
  598. <a href="/archive"><img src="http://25.media.tumblr.com/tumblr_m5crjt5bjE1r0qsyqo1_100.png" title="View my old memories"></a>
  599. <a href="#?w=500" rel="submit" class="poplight"><img src="http://24.media.tumblr.com/tumblr_m5cshyMO8h1r0qsyqo1_100.png" title="Submit your love"></a>
  600. <a href="#?w=500" rel="credits" class="poplight"><img src="http://25.media.tumblr.com/tumblr_m5crk5DBe81r0qsyqo1_100.png" title="An applause for them"></a><br>
  601. <select style="color:#ffa9a9; background:#fff; width:240px; letter-spacing:1px; border:1px solid #ffdfdf;" onChange="location.href=this.options[this.selectedIndex].value;">
  602. <option value=''>More Lurks</option>
  603. <option value="{text:Link Url 1}">{text:Link Name 1}</option>
  604. <option value="{text:Link Url 2}">{text:Link Name 2}</option>
  605. <option value="{text:Link Url 3}">{text:Link Name 3}</option>
  606. <option value="{text:Link Url 4}">{text:Link Name 4}</option>
  607. </select>
  608.  
  609. <h2>Statistics <img src="http://media.tumblr.com/tumblr_m6lwvxHTYu1rrzsji.gif"></h2>
  610. <!-- Make your own at freehostedscript.net -->
  611. <img src="http://media.tumblr.com/tumblr_m6lwvxHTYu1rrzsji.gif"> Stealing is prohibited.<br>
  612. <img src="http://media.tumblr.com/tumblr_m6lwvxHTYu1rrzsji.gif"> Right click disabled.<br>
  613. <img src="http://media.tumblr.com/tumblr_m6lwvxHTYu1rrzsji.gif"> Infinite Scrolling is on.<br>
  614. <img src="http://media.tumblr.com/tumblr_m6lwvxHTYu1rrzsji.gif"> <script language="JavaScript" src="http://freehostedscripts.net/ocount.php?site=ID1659311&name=crowns"></script><br>
  615. <img src="http://media.tumblr.com/tumblr_m6lwvxHTYu1rrzsji.gif"> <script language="JavaScript">
  616. var ref = (''+document.referrer+'');
  617. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID2027607&e1=princess/prince&e2=princesses/princes&r=' + ref + '"><\/script>');
  618. </script><br>
  619. <!-- Make your own at freehostedscript.net -->
  620.  
  621. <h2>Le Pet <img src="http://media.tumblr.com/tumblr_m6lwvxHTYu1rrzsji.gif"></h2>
  622. <object type="application/x-shockwave-flash" style="outline:none;" data="http://hosting.gmodules.com/ig/gadgets/file/112581010116074801021/fish.swf?up_fishColor2=FFDFDF&up_fishColor6=F45540&up_fishName=Fish&up_fishColor3=FFB0B0&up_fishColor5=FF9494&up_fishColor1=FFBFBF&up_fishColor7=F45540&up_backgroundImage=http://27.media.tumblr.com/tumblr_lq9rmvDH2T1qjex46o4_250.j&up_fishColor8=F45540&up_backgroundColor=FFEFEF&up_foodColor=FCB347&up_fishColor4=FFBDBD&up_fishColor9=F45540&up_numFish=5&up_fishColor10=F45540&" width="240" height="200"><param name="movie" value="http://hosting.gmodules.com/ig/gadgets/file/112581010116074801021/fish.swf?up_fishColor2=FFDFDF&up_fishColor6=F45540&up_fishName=Fish&up_fishColor3=FFB0B0&up_fishColor5=FF9494&up_fishColor1=FFBFBF&up_fishColor7=F45540&up_backgroundImage=http://27.media.tumblr.com/tumblr_lq9rmvDH2T1qjex46o4_250.j&up_fishColor8=F45540&up_backgroundColor=FFEFEF&up_foodColor=FCB347&up_fishColor4=FFBDBD&up_fishColor9=F45540&up_numFish=5&up_fishColor10=F45540&"></param><param name="AllowScriptAccess" value="always"></param><param name="wmode" value="opaque"></param><param name="scale" value="noscale"/><param name="salign" value="tl"/></object>
  623.  
  624.  
  625. <h2>Credits <img src="http://media.tumblr.com/tumblr_m6lwvxHTYu1rrzsji.gif"></h2>
  626. <center>Theme is originally made by <a href="http:///flatte-cafe.tumblr.com">Flatte-Cafe</a>.<br>
  627. Inspirations from <a href="http://sing-stop-and-stare.tumblr.com/">Sing-Stop-and-Stare</a>.<br>
  628. Best viewed in Google Chrome.
  629. <br><br>
  630.  
  631. <center><img src="http://i268.photobucket.com/albums/jj20/Joca_boca/296ljl5.png"></center>
  632. </div>
  633.  
  634. <div id="content">
  635. {block:Posts}
  636. <div id="entry">
  637.  
  638. {block:IndexPage}<div class="permalink"><a href="{Permalink}" title="{NoteCountWithLabel}">{NoteCount} Hearts</a></div> <div class="reblog"> <a href="{ReblogURL}" target="_blank">Re-Heart</a></div>{/block:IndexPage}
  639.  
  640. {block:Title}<h3>{Title}</h3>{/block:Title}
  641. {block:Text}{Body}{/block:Text}
  642.  
  643. {block:Photo}
  644. <a href="{permalink}"><img src="{PhotoURL-500}" width="480"/></a>
  645. {/block:Photo}
  646.  
  647. {block:Photoset}
  648. {Photoset-500}
  649. {/block:Photoset}
  650.  
  651. {block:Quote}
  652. <h5>{Quote}</h5>{block:Source}-{Source}{/block:Source}
  653. {/block:Quote}
  654.  
  655. {block:Video}
  656. {Video-500}<br>
  657. {PlayCountWithLabel}
  658. {/block:Video}
  659.  
  660. {block:Link}
  661. <a href="{URL}" class="link" {Target}><h4>{Name}</h4></a><BR>
  662. {block:Description}{Description}{/block:Description}
  663. {/block:Link}
  664.  
  665. {block:Chat}
  666. {block:Lines}
  667. {block:Label}
  668. <br>{Label}
  669. {/block:Label}
  670. <font color="#000">&nbsp;{Line}</font>
  671. {/block:Lines}
  672. {/block:Chat}
  673.  
  674. {block:Audio}
  675. {AudioPlayerGrey}
  676. <br><div align="right">{block:Artist}
  677. Artist: {Artist}</div>
  678. {/block:Artist}<br>
  679. {block:Caption}{Caption}{/block:Caption}
  680. {/block:Audio}
  681.  
  682.  
  683. {block:Answer}
  684. <div class="bubble">{Asker} whispered {Question}</div><br>
  685. <div class="bubble2">{Answer}</div>
  686. {/block:Answer}
  687.  
  688. <h1></h1>
  689.  
  690. {block:PermalinkPage}
  691. {block:Caption}
  692. {Caption}
  693. {/block:Caption}
  694. <br>
  695. {block:NoteCount}
  696. {NoteCount} notes
  697. {/block:NoteCount}
  698. <Br>
  699. {block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  700. {/block:PermalinkPage}
  701. </div>
  702.  
  703. {/block:Posts}
  704. </div></div>
  705.  
  706. </body>
  707.  
  708.  
  709. <div id="mailbox" class="popup_block">
  710. <center><font size="10" color:"#EEB4B4"><font face="cookie", cursive/>❝ Ask me anything ❞<br><p></font></font>
  711. <iframe frameborder="0" scrolling="no" width="100%" height="150" src="http://www.tumblr.com/ask_form/{name}.tumblr.com/" style="background-color:transparent; overflow:hidden;" id="ask_form">
  712. </center></iframe></div>
  713.  
  714. <div id="submit" class="popup_block"><center><font size="10" color:"#EEB4B4"><font face="cookie", cursive/>❝ Submit Love ❞<br><p></font></font><br>
  715. <center><iframe frameborder="0" scrolling="no" width="100%" height="500px" src= "http://tumblr.com/submit_form/{name}.tumblr.com" style= "background-color:transparent; overflow: hidden; "id= "submit_form"></iframe>
  716. </center></div>
  717.  
  718. <div id="credits" class="popup_block"><center><center><font size="10" color:"#EEB4B4"><font face="cookie", cursive/>❝ Credits ❞<br><p></font></font>
  719. <center>
  720. Original theme by <a href="http://flatte-cafe.tumblr.com/" target="blank">Flatte-Cafe<br></a>
  721. Inspirations from <a href="http://sing-stop-and-stare.tumblr.com/" target="blank">Sing-Stop-and-Stare<br></a>
  722. Tutorials by <a href="http://academyoftumblr.tumblr.com" target="blank">Academy of Tumblr</a><br>
  723. Optimized for Google Chrome<br>
  724. Powered by <a href="http://www.tumblr.com">Tumblr</a><br>
  725. <br><br>
  726. </center>
  727. </div>
  728.  
  729.  
  730. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement