FreeTextHost.in host your text & codes anonymously


FREE TEXT HOST

You can save codes, scripts, sources & general debugging text and share / access / use them at any time (anonymously).
You can even set yourself a password if you want to keep it just for yourself.

Posted by "Floral in Pink T" on Mon, March 19th, 2012, 9:03 PM - Never Expires
View followups from LilmissCurlyNeng, LilmissCurlyNeng, swagonblue, hello yellow and MITCHELLE | Download | New paste

  1. <html>
  2.  
  3. <!--Floral in Pink Theme by: CharmieA (w w w.myperfectcharm.t u m b l r.c o m)-->
  4. <!--Feel Free to modify or do whatever you want like change the color or fonts-->
  5. <!--But do not remove or alter the credits-->
  6. <!--Do not redistribute or claim my code as your own-->
  7. <!--Never remove this or else-->
  8. <!--Strictly no ripping of codes or I’ll rip your face -->
  9.  
  10.  
  11. <head>
  12.  
  13. <script type="text/javascript">
  14. // <![CDATA[
  15. var colours=new Array("#FFBAD1", "#FFBAD1", "#FFBAD1", "#FFBAD1", "#FFBAD1"); // colours for top, right, bottom and left borders and background of bubbles
  16. var bubbles=66; // maximum number of bubbles on screen
  17.  
  18. /****************************
  19. * JavaScript Bubble Cursor  *
  20. * (c) 2010 mf2fm web-design *
  21. *  http://www.mf2fm.com/rv  *
  22. * DON'T EDIT BELOW THIS BOX *
  23. ****************************/
  24. var x=ox=400;
  25. var y=oy=300;
  26. var swide=800;
  27. var shigh=600;
  28. var sleft=sdown=0;
  29. var bubb=new Array();
  30. var bubbx=new Array();
  31. var bubby=new Array();
  32. var bubbs=new Array();
  33.  
  34. window.onload=function() { if (document.getElementById) {
  35.   var rats, div;
  36.   for (var i=0; i<bubbles; i++) {
  37.     rats=createDiv("3px", "3px");
  38.     rats.style.visibility="hidden";
  39.  
  40.     div=createDiv("auto", "auto");
  41.     rats.appendChild(div);
  42.     div=div.style;
  43.     div.top="1px";
  44.     div.left="0px";
  45.     div.bottom="1px";
  46.     div.right="0px";
  47.         div.borderLeft="1px solid "+colours[3];
  48.         div.borderRight="1px solid "+colours[1];
  49.  
  50.     div=createDiv("auto", "auto");
  51.         rats.appendChild(div);
  52.         div=div.style;
  53.     div.top="0px";
  54.     div.left="1px";
  55.         div.right="1px";
  56.         div.bottom="0px"
  57.         div.borderTop="1px solid "+colours[0];
  58.         div.borderBottom="1px solid "+colours[2];
  59.  
  60.         div=createDiv("auto", "auto");
  61.         rats.appendChild(div);
  62.         div=div.style;
  63.         div.left="1px";
  64.         div.right="1px";
  65.     div.bottom="1px";
  66.         div.top="1px";
  67.         div.backgroundColor=colours[4];
  68.         if (navigator.appName=="Microsoft Internet Explorer") div.filter="alpha(opacity=50)";
  69.         else div.opacity=0.5;
  70.     document.body.appendChild(rats);
  71.         bubb[i]=rats.style;
  72.   }
  73.   set_scroll();
  74.   set_width();
  75.   bubble();
  76. }}
  77.  
  78. function bubble() {
  79.   var c;
  80.   if (x!=ox || y!=oy) {
  81.     ox=x;
  82.     oy=y;
  83.     for (c=0; c<bubbles; c++) if (!bubby[c]) {
  84.       bubb[c].left=(bubbx[c]=x)+"px";
  85.       bubb[c].top=(bubby[c]=y)+"px";
  86.       bubb[c].width="3px";
  87.           bubb[c].height="3px"
  88.           bubb[c].visibility="visible";
  89.           bubbs[c]=3;
  90.       break;
  91.         }
  92.   }
  93.   for (c=0; c<bubbles; c++) if (bubby[c]) update_bubb(c);
  94.   setTimeout("bubble()", 40);
  95. }
  96.  
  97. function update_bubb(i) {
  98.   if (bubby[i]) {
  99.     bubby[i]-=bubbs[i]/2+i%2;
  100.     bubbx[i]+=(i%5-2)/5;
  101.     if (bubby[i]>sdown && bubbx[i]>0) {
  102.           if (Math.random()<bubbs[i]/shigh*2 && bubbs[i]++<8) {
  103.                 bubb[i].width=bubbs[i]+"px";
  104.                 bubb[i].height=bubbs[i]+"px";
  105.           }
  106.       bubb[i].top=bubby[i]+"px";
  107.       bubb[i].left=bubbx[i]+"px";
  108.     }
  109.     else {
  110.       bubb[i].visibility="hidden";
  111.       bubby[i]=0;
  112.       return;
  113.     }
  114.   }
  115. }
  116.  
  117. document.onmousemove=mouse;
  118. function mouse(e) {
  119.   set_scroll();
  120.   y=(e)?e.pageY:event.y+sleft;
  121.   x=(e)?e.pageX:event.x+sdown;
  122. }
  123.  
  124. window.onresize=set_width;
  125. function set_width() {
  126.   var sw_min=999999;
  127.   var sh_min=999999;
  128.   if (document.documentElement && document.documentElement.clientWidth) {
  129.     if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  130.     if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  131.   }
  132.   if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  133.     if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  134.     if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  135.   }
  136.   if (document.body.clientWidth) {
  137.     if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  138.     if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  139.   }
  140.   if (sw_min==999999 || sh_min==999999) {
  141.     sw_min=800;
  142.     sh_min=600;
  143.   }
  144.   swide=sw_min;
  145.   shigh=sh_min;
  146. }
  147.  
  148. window.onscroll=set_scroll;
  149. function set_scroll() {
  150.   if (typeof(self.pageYOffset)=="number") {
  151.     sdown=self.pageYOffset;
  152.     sleft=self.pageXOffset;
  153.   }
  154.   else if (document.body.scrollTop || document.body.scrollLeft) {
  155.     sdown=document.body.scrollTop;
  156.     sleft=document.body.scrollLeft;
  157.   }
  158.   else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  159.     sleft=document.documentElement.scrollLeft;
  160.         sdown=document.documentElement.scrollTop;
  161.   }
  162.   else {
  163.     sdown=0;
  164.     sleft=0;
  165.   }
  166. }
  167.  
  168. function createDiv(height, width) {
  169.   var div=document.createElement("div");
  170.   div.style.position="absolute";
  171.   div.style.height=height;
  172.   div.style.width=width;
  173.   div.style.overflow="hidden";
  174.   return (div);
  175. }
  176. // ]]>
  177. </script>
  178.  
  179.  
  180. <script type="text/javascript"
  181. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  182. <script>
  183. $(document).ready(function() {
  184. //
  185. $('a.poplight[href^=#]').click(function() {
  186. var popID = $(this).attr('rel'); //Get Popup Name
  187. var popURL = $(this).attr('href'); //Get Popup href to define size
  188. var query= popURL.split('?');
  189. var dim= query[1].split('&');
  190. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  191. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://png.findicons.com/files/icons/1714/dropline_neu/24/dialog_close.png" class="btn_close" title="Close" alt="Close" /></a>');
  192. var popMargTop = ($('#' + popID).height() + 80) / 2;
  193. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  194. //Apply Margin to Popup
  195. $('#' + popID).css({
  196. 'margin-top' : -popMargTop,
  197. 'margin-left' : -popMargLeft
  198. });
  199. $('body').append('<div id="fade"></div>');
  200. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  201. return false;
  202. });
  203. $('a.close, #fade').live('click', function() {
  204. $('#fade , .popup_block').fadeOut(function() {
  205. $('#fade, a.close').remove(); //fade them both out
  206. });
  207. return false;
  208. });
  209. });
  210. </script>
  211.  
  212. <script LANGUAGE="JavaScript">var a1 = "Welcome to my blog!";var a2 = "{title}";var delay = 1600;b1();function b1() {ID = setTimeout("b2()",delay);document.title = (a1);}function b2() {ID = setTimeout("b1()",delay);document.title = (a2);}</Script>
  213.  
  214. <link href='http://fonts.googleapis.com/css?family=Maiden+Orange' rel='stylesheet' type='text/css'>
  215. <link rel="shortcut icon" href="{favicon}">
  216. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  217.  
  218.  
  219. <meta name="text:Link1 name" content="link name"/>
  220. <meta name="text:Link1 URL" content="/"/>
  221.  
  222. <meta name="text:Link2 name" content="link name"/>
  223. <meta name="text:Link2 URL" content="/"/>
  224.  
  225. <meta name="text:Link2 name" content="link name"/>
  226. <meta name="text:Link2 URL" content="/"/>
  227.  
  228. <meta name="text:Link3 name" content="link name"/>
  229. <meta name="text:Link3 URL" content="/"/>
  230.  
  231. <meta name="text:Link4 name" content="link name"/>
  232. <meta name="text:Link4 URL" content="/"/>
  233. <meta name="if:Show SocialNetworkingIcons" content="1"/>
  234. <meta name="if:Show Facebook" content="1"/>
  235. <meta name="if:Show Twitter" content="1"/>
  236. <meta name="if:Show LastFM" content="1"/>
  237. <meta name="if:Show Yahoo" content="1"/>
  238. <meta name="if:Show YouTube" content="1"/>
  239. <meta name="if:Show Plurk" content="1"/>
  240. <meta name="if:Show Flickr" content="1"/>
  241. <meta name="text:Facebook Link" content=""/>
  242. <meta name="text:Twitter Link" content=""/>
  243. <meta name="text:Yahoo Link" content=""/>
  244. <meta name="text:YouTube Link" content=""/>
  245. <meta name="text:Plurk Link" content=""/>
  246. <meta name="text:Flickr Link" content=""/>
  247. <meta name="text:LastFM Link" content=""/>
  248. <style type="text/css">
  249.  
  250. @font-face {
  251. font-family: "tinytots";
  252. src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');
  253. }
  254.  
  255. @font-face {
  256. font-family: "cinnamon cake";
  257. src: url('http://static.tumblr.com/ievebsd/5Pglz84xc/cinnamon_cake.ttf');
  258. }
  259.  
  260. {
  261. height:0;
  262. visibility:hidden;
  263. display:none;
  264. }
  265.  
  266.  
  267. body
  268. {
  269. background-image: url(http://i1133.photobucket.com/albums/m593/myperfectcharm/tumblr/3-1.png);
  270. font-family:Arial;
  271. font-size:9pt;
  272. color: black;
  273. cursor: url(http://i1133.photobucket.com/albums/m593/myperfectcharm/tumblr/pinkbow-2.png);
  274. line-height: 75%;
  275. font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
  276. font-size:11px;
  277. }
  278.  
  279. a:link, a:visited, a:active {
  280. color: #806795;
  281. cursor: url("http://i1133.photobucket.com/albums/m593/myperfectcharm/tumblr/pinkbow.png"), default;
  282. text-decoration:none;
  283. }
  284. a:hover {
  285. color: #ff88cc;
  286. cursor: url("http://i1133.photobucket.com/albums/m593/myperfectcharm/tumblr/pinkbow.png"), default;
  287. text-decoration:underline;
  288. background-color:#fff;
  289. }
  290.  
  291.  
  292. blockquote
  293. {
  294. padding: 3px;
  295. border: 3px solid #67B6B6;
  296. }
  297.  
  298.  
  299.  
  300.  
  301.  
  302. .pink {
  303. font-family: 'cinnamon cake';
  304. font-size: 18px;
  305. width: 100%;
  306. background-color: #FFAFC6;
  307. color:#ffffff;
  308. font-weight:bold;
  309. border:none;
  310. padding:10px;
  311. display:block;
  312. -moz-border-radius: 15px;
  313. border-radius: 15px;
  314. text-align: left;
  315. }
  316.  
  317. .popup_block{
  318. display: none;
  319. background: #D3D3D3;
  320. background-image: url();
  321. padding: 10px;
  322. font-family: Garamond;
  323. float: left;
  324. font-size: 10px;
  325. position: fixed;
  326. top: 50%; left: 50%;
  327. z-index: 2;
  328. border: 2px solid #363636;
  329. -moz-box-shadow: 0 0 5px #CFCFCF;
  330. -webkit-box-shadow: 0 0 5px #CFCFCF;
  331. -webkit-border-radius: 10px;
  332. -moz-border-radius: 10px;
  333. border-radius: 10px;
  334. }
  335. img.btn_close {
  336. float: right;
  337. margin: -5px -5px 0 0;
  338. }
  339. *html .popup_block {
  340. position: absolute;
  341. }
  342.  
  343. b {
  344. font-family: arial;
  345. color: #FF74B2;
  346. font-weight: bold;
  347. font-size: 11px;
  348. }
  349.  
  350. i {
  351. color: #C2B971;
  352. font-family: georgia;
  353. font-weight: bold;
  354. font-size: 11px;
  355. border-bottom: solid 0px ;
  356. }
  357.  
  358. u {
  359. color: #FFB401;
  360. font-weight: normal;
  361. text-transform: bold;
  362. font-size: 11px;
  363. border-bottom: solid 1px #FFB401;
  364. }
  365.  
  366. ol.notes {
  367. padding: 0px;
  368. margin: 25px 0px;
  369. list-style-type: none;
  370. border-bottom: solid 2px #25161B;
  371. }
  372.  
  373. ol.notes li.note {
  374. border-top: solid 2px #25161B;
  375. padding: 10px;
  376. }
  377.  
  378. ol.notes li.note img.avatar {
  379. vertical-align: -4px;
  380. margin-right: 10px;
  381. width: 16px;
  382. height: 16px;
  383. }
  384.  
  385. ol.notes li.note span.action {
  386. font-weight: bold;
  387. }
  388.  
  389. ol.notes li.note .answer_content {
  390. font-weight: normal;
  391. }
  392.  
  393. ol.notes li.note blockquote {
  394. border-color: #25161B;
  395. padding: 4px 10px;
  396. margin: 10px 0px 0px 25px;
  397. }
  398.  
  399. ol.notes li.note blockquote a {
  400. text-decoration: none;
  401.  
  402. }
  403.  
  404. .content
  405. {
  406.  
  407. background: #fff;
  408. line-height: 14px;
  409. padding:10px;
  410. border:5px solid #FFE2EB;
  411. font-family: 'century gothic', 'Palatino Linotype', Times, 'Times New Roman', serif;
  412. font-size: 10px;
  413. }
  414.  
  415. #wrapper
  416. {
  417.  
  418. background: #fff;
  419. width: 900px;
  420. margin: auto;
  421. border:5px solid #FFE2EB;
  422. }
  423.  
  424.  
  425. .links {margin: 0px 0px 3px 0px; padding: 3px 0 3px 0;}
  426. .links a{display: block; color:#3d3d3d; background-color:#FFAFC6; text-align:center; width:270px; padding: 3px 0 3px 0; margin-bottom: 1px; text-transform: uppercase; text-decoration:none}
  427. .links a:hover{background-color: #000; color: white;}
  428.  
  429. .page a:link,.page a:visited,.page a:active
  430. { text-decoration: none; color:#ffffff; font-size:100%; font-weight: bold; border-bottom:0px dashed #ffffff;
  431. background:grey;
  432.  
  433. }
  434.  
  435. .page a:hover {
  436. color: #ffffff; font-size:100%;
  437. text-decoration:none;border-bottom:0px dashed #ffffff;
  438. background-color: black;
  439. }
  440.  
  441. .pagination
  442. {
  443. text-decoration: none; color:#ffffff; font-size:100%; font-weight: normal; border-bottom:0px dashed #ffffff;
  444. background:#FF74B2; padding:5px 10px;
  445. }
  446.  
  447. .photo
  448. {padding:5px; border:2px solid black;opacity: 1.0;
  449. -webkit-transition-duration:.2s;
  450. -moz-transition:.2s;
  451. -webkit-box-shadow: inset 1px 1px 1px rgba(255,255,255,.8);
  452. -moz-box-shadow:inset 1px 1px 1px rgba(255,255,255,.8);
  453. box-shadow:inset 1px 1px 1px rgba(255,255,255,.8);
  454. }
  455.  
  456. .photo:hover {opacity: .80;
  457. -webkit-transition-duration:.2s;
  458. -moz-transition:.2s;}
  459.  
  460.  
  461. .title {
  462. font-family:'cinnamon cake';
  463. font-size: 25px;
  464. color: #582579;
  465. letter-spacing: 1px;
  466. text-align: center;
  467. line-height: 20px;
  468.  
  469. }
  470.  
  471. headertop {
  472. color: #b1b1b1;
  473. font-family: 'cinnamon cake';
  474. text-shadow: 1px 1px 2px #e1dad4;
  475. font-weight: bold;
  476. font-size: 72px;
  477. font-weight: normal;
  478. line-height:15px;
  479. letter-spacing: 1px;
  480. font-style: normal;
  481. text-transform: none;
  482. text-align: center;
  483. padding: 0px;
  484. margin:0px;
  485. }
  486.  
  487. div.navigate a{
  488.  
  489. font-family:'tinytots'; font-size: 8px; background: #FFAFC6; color: #ffffff; display:block; width: 270px; height: 15px; text-align: center; padding-top:2px; margin-left:2px; margin-top:2px; position:relative; text-align: center; z-index:1; font-weight: bold; -moz-border-radius:7px; -webkit-border-radius:7px; display: inline-block;
  490.  
  491. }div.navigate a:hover{background: #E6E1E1; letter-spacing:1px;}
  492.  
  493. div.navigate2 a{
  494.  
  495.  
  496.  
  497. background: #FFEBF4; color: #FA7DA7; display:block; width: 200px; height: 15px; text-align: center; padding-top:2px; margin-left:2px; margin-top:2px; position:relative; text-align: center; z-index:1; font-weight: bold; -moz-border-radius:7px; -webkit-border-radius:7px; display: inline-block;
  498.  
  499.  
  500.  
  501. }
  502. img           {filter: alpha(opacity=50); opacity: 5.0; -webkit-transition-duration: .60s;}
  503. img:hover     {filter: alpha(opacity=100); opacity:.70; }
  504.  
  505. ::selection { color: #000000; background: #FF99CC }
  506. ::-moz-selection { color: #000000; background: #FF99CC }
  507.  
  508.  
  509. ::-webkit-scrollbar {
  510.  
  511. width: 9px;
  512.  
  513. background-color: #eeeeee;
  514.  
  515. }
  516.  
  517. .pagination {
  518. font-size:        10px;
  519. letter-spacing:  1px;
  520. text-align:               center;
  521. text-transform:  uppercase;
  522. }
  523.  
  524. .pagination a:hover { color: #ff76b3; }
  525.  
  526. .current_page { background: #CCCCCC; padding: 5px; font-weight: bold; }
  527. .jump_page { padding: 5px; }
  528. .previous_page { padding: 5px; float: left; } 
  529. .next_page { padding: 5px; float: right; }
  530.  
  531.  
  532. ::-webkit-scrollbar-thumb {
  533.  
  534. background-color: #eeeeee;
  535.  
  536. background:url('http://i1197.photobucket.com/albums/aa427/eikcaj18/Jackie-scroll-bar.gif');
  537.  
  538. background-repeat: repeat;
  539.  
  540. -moz-border-radius: 1ex;
  541.  
  542. -khtml-border-radius: 1ex;
  543.  
  544. -webkit-border-radius: 1ex;
  545.  
  546. border-radius: 1ex;
  547.  
  548. min-height: 20px;
  549.  
  550. }
  551.  
  552.  
  553. </style>
  554.  
  555. <body>
  556. <br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  557. <center>
  558.  
  559. <headertop>{title}</headertop>
  560. </center>
  561.  
  562. <div style="position: absolute; top: 320px; left: 50px; width: 300px;">
  563.  
  564. <div class="content">
  565.  
  566. <div class="pink">
  567. The Blogger. </div>
  568.  
  569. <br>
  570.  
  571. <center>
  572.  
  573. <img src="{PortraitURL-128}" align="center"></img>
  574.  
  575. <br>
  576.  
  577. </div>
  578.  
  579. <br>
  580.  
  581. <div class="content">
  582.  
  583. <div class="pink">
  584. About Me. </div>
  585.  
  586. <br>
  587.  
  588. <center>
  589.  
  590. {block:Description}
  591. {Description}
  592. {/block:Description}
  593.  
  594. </div>
  595.  
  596. <br>
  597.  
  598. <div class="content">
  599. <div class="pink">
  600. Navigation. </div>
  601.  
  602. <br>
  603.  
  604. <div class="navigate">
  605. <a href="/">Home</a>
  606.  
  607. <a href="/ask">Ask</a>
  608.  
  609. <a href="/archive">Archive</a>
  610.  
  611. <a href="http://myperfectcharm.tumblr.com">Theme Designer</a>
  612. </div>
  613.  
  614. </div>
  615. <br>
  616.  
  617. <div class="content">
  618. <div class="pink">
  619. Search my blog. </div>
  620.  
  621. <br>
  622.  
  623. <div class="navigate">
  624. <form action="/search" method="get">
  625.  
  626. <input type="text" name="q" value=""/ style="background: #FFFFFF; border: 1px solid #AAAAAA; width: 200px; height:18px; color: #AAAAAA; text-transform: none; font-size: 9px; ">
  627.  
  628. <input type="submit" value="SEARCH"/ style="background: #F5F5F5; border: 1px solid #AAAAAA;  color: #AAAAAA; text-transform: none; font-size: 9px; letter-spacing:1px;">
  629.  
  630. </form>
  631. </div>
  632.  
  633. </div>
  634.  
  635. <br>
  636.  
  637. <div class="content">
  638. <div class="pink">
  639. My Links. </div>
  640.  
  641. <br>
  642.  
  643. <div class="navigate">
  644. <a href="{text:Link1 URL}">{text:Link1 name}</a>
  645.  
  646. <a href="{text:Link2 URL}">{text:Link2 name}</a>
  647.  
  648. <a href="{text:Link3 URL}">{text:Link3 name}</a>
  649.  
  650. <a href="{text:Link4 URL}">{text:Link4 name}</a>
  651. </div>
  652.  
  653. </div>
  654.  
  655. <br>
  656.  
  657. <div class="content">
  658. <div class="pink">
  659. Theme by: </div>
  660.  
  661. <br>
  662.  
  663. <center><a href="http://myperfectcharm.tumblr.com" target="_blank"><img src="http://i1133.photobucket.com/albums/m593/myperfectcharm/1.png" border="0" alt="theme by: myperfectcharm"></a>
  664. </center>
  665.  
  666. </div>
  667.  
  668. </div>
  669.  
  670.  
  671.  
  672.  
  673. <div style="position: absolute; top: 320px; left: 380px; width: 580px;">
  674.  
  675.  
  676. {block:Posts}
  677.  
  678. {block:Text}
  679.  
  680. <div class="content">
  681.  
  682. <CENTER> {block:Title}
  683. <div class="title">{Title}</div>
  684. <br>
  685. {/block:Title}</center>
  686.  
  687. <p>{Body}</p>
  688.  
  689.  
  690. <br>
  691.  
  692. <span style="float: left;">
  693. {block:Date} {TimeAgo} on <a href="{Permalink}">{Month} {DayOfMonth} {Year}</a> @ {12Hour}:{Minutes}{AmPm}{/block:Date} {block:NoteCount}<a href="{Permalink}">
  694. {NoteCountWithLabel}</a>{/block:NoteCount}</span>
  695.  
  696. <span style="float: right;">
  697. <a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">Reblog</a>
  698. </span>
  699.  
  700. <br>
  701.  
  702.  
  703. {block:PostNotes} <br><br>
  704. <B>POST DETAILS:</B><BR>
  705. {block:HasTags}<br>Tagged as:
  706.  
  707. {block:Tags}
  708. <a href="{TagURL}">{Tag}</a>,
  709. {/block:Tags}
  710. {/block:HasTags}{block:ContentSource}<br>Originally Posted by:<a href="{SourceURL}" target="_blank">{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo} {SourceTitle}{/block:NoSourceLogo}</a> {/block:ContentSource}{block:RebloggedFrom}Reblogged From: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}<br>
  711.  
  712. <br><B>POST NOTES:</B><BR>
  713.  
  714. <div align="left">{PostNotes}</div>
  715.  
  716. {/block:PostNotes}
  717.  
  718. </div>
  719. <br><br>{/block:Text}
  720.  
  721. {block:Photo}
  722.  
  723. <div class="content">
  724.  
  725. <CENTER>
  726. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}" class="photo" width="500"/>
  727. {LinkCloseTag} <br> <br>
  728.  
  729. {block:Caption}
  730.  
  731. <p>{Caption}</p>
  732. {/block:Caption}
  733.  
  734. </center>
  735. <br>
  736.  
  737.  
  738. <span style="float: left;">
  739. {block:Date} {TimeAgo} on <a href="{Permalink}">{Month} {DayOfMonth} {Year}</a> @ {12Hour}:{Minutes}{AmPm}{/block:Date} {block:NoteCount}<a href="{Permalink}">
  740. {NoteCountWithLabel}</a>{/block:NoteCount}</span>
  741.  
  742. <span style="float: right;">
  743. <a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">Reblog</a>
  744. </span>
  745.  
  746. <br>
  747.  
  748.  
  749. {block:PostNotes} <br><br>
  750. <B>POST DETAILS:</B><BR>
  751. {block:HasTags}<br>Tagged as:
  752.  
  753. {block:Tags}
  754. <a href="{TagURL}">{Tag}</a>,
  755. {/block:Tags}
  756. {/block:HasTags}{block:ContentSource}<br>Originally Posted by:<a href="{SourceURL}" target="_blank">{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo} {SourceTitle}{/block:NoSourceLogo}</a> {/block:ContentSource}{block:RebloggedFrom}Reblogged From: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}<br>
  757.  
  758. <br><B>POST NOTES:</B><BR>
  759.  
  760. <div align="left">{PostNotes}</div>
  761.  
  762. {/block:PostNotes}
  763.  
  764. </div>
  765. <br><br>{/block:Photo}
  766.  
  767.  
  768. {block:Quote}
  769.  
  770. <div class="content">
  771.  
  772. <CENTER>
  773. <div class="title"><span class="quote">&ldquo;{Quote}&rdquo;</div></span>
  774.  
  775. {block:Source}
  776. <span class="source"><br><i>{Source}</i></span>
  777. {/block:Source}
  778. </CENTER>
  779.  
  780. <br>
  781. <span style="float: left;">
  782. {block:Date} {TimeAgo} on <a href="{Permalink}">{Month} {DayOfMonth} {Year}</a> @ {12Hour}:{Minutes}{AmPm}{/block:Date} {block:NoteCount}<a href="{Permalink}">
  783. {NoteCountWithLabel}</a>{/block:NoteCount}</span>
  784.  
  785. <span style="float: right;">
  786. <a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">Reblog</a>
  787. </span>
  788.  
  789. <br>
  790. <div class="h3"></div>
  791.  
  792.  
  793. {block:PostNotes} <br><br>
  794. <B>POST DETAILS:</B><BR>
  795. {block:HasTags}<br>Tagged as:
  796.  
  797. {block:Tags}
  798. <a href="{TagURL}">{Tag}</a>,
  799. {/block:Tags}
  800. {/block:HasTags}{block:ContentSource}<br>Originally Posted by:<a href="{SourceURL}" target="_blank">{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo} {SourceTitle}{/block:NoSourceLogo}</a> {/block:ContentSource}{block:RebloggedFrom}Reblogged From: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}<br>
  801.  
  802. <br><B>POST NOTES:</B><BR>
  803.  
  804. <div align="left">{PostNotes}</div>
  805.  
  806. {/block:PostNotes}
  807.  
  808. </div>
  809.  
  810. <br><br>{/block:Quote}
  811.  
  812. {block:Link}
  813.  
  814. <div class="content">
  815.  
  816. <CENTER>
  817. <a href="{URL}" id="postlink" {Target}><div class="title">{Name}</div></a>
  818.  
  819. {block:Description}
  820. <p>{Description}</p>
  821. {/block:Description}
  822.  
  823. </CENTER>
  824.  
  825. <br>
  826. <span style="float: left;">
  827. {block:Date} {TimeAgo} on <a href="{Permalink}">{Month} {DayOfMonth} {Year}</a> @ {12Hour}:{Minutes}{AmPm}{/block:Date} {block:NoteCount}<a href="{Permalink}">
  828. {NoteCountWithLabel}</a>{/block:NoteCount}</span>
  829.  
  830. <span style="float: right;">
  831. <a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">Reblog</a>
  832. </span>
  833.  
  834.  
  835. <br>
  836.  
  837.  
  838.  
  839. {block:PostNotes} <br><br>
  840. <B>POST DETAILS:</B><BR>
  841. {block:HasTags}<br>Tagged as:
  842.  
  843. {block:Tags}
  844. <a href="{TagURL}">{Tag}</a>,
  845. {/block:Tags}
  846. {/block:HasTags}{block:ContentSource}<br>Originally Posted by:<a href="{SourceURL}" target="_blank">{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo} {SourceTitle}{/block:NoSourceLogo}</a> {/block:ContentSource}{block:RebloggedFrom}Reblogged From: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}<br>
  847.  
  848. <br><B>POST NOTES:</B><BR>
  849.  
  850. <div align="left">{PostNotes}</div>
  851.  
  852. {/block:PostNotes}
  853.  
  854. </div>
  855. <br><br>{/block:Link}
  856.  
  857. {block:Chat}
  858.  
  859. <div class="content">
  860.  
  861. <CENTER> {block:Title}
  862. <a href="{Permalink}"><div class="title">{Title}</div></a>
  863. {/block:Title}
  864.  
  865. {block:Lines}
  866.  
  867. {block:Label}
  868. <br>{Label}
  869. {/block:Label}
  870.  
  871. {Line}
  872.  
  873. {/block:Lines}
  874.  
  875. </CENTER>
  876.  
  877. <br>
  878. <span style="float: left;">
  879. {block:Date} {TimeAgo} on <a href="{Permalink}">{Month} {DayOfMonth} {Year}</a> @ {12Hour}:{Minutes}{AmPm}{/block:Date} {block:NoteCount}<a href="{Permalink}">
  880. {NoteCountWithLabel}</a>{/block:NoteCount}</span>
  881.  
  882. <span style="float: right;">
  883. <a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">Reblog</a>
  884. </span>
  885.  
  886. <br>
  887.  
  888.  
  889.  
  890. {block:PostNotes} <br><br>
  891. <B>POST DETAILS:</B><BR>
  892. {block:HasTags}<br>Tagged as:
  893.  
  894. {block:Tags}
  895. <a href="{TagURL}">{Tag}</a>,
  896. {/block:Tags}
  897. {/block:HasTags}{block:ContentSource}<br>Originally Posted by:<a href="{SourceURL}" target="_blank">{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo} {SourceTitle}{/block:NoSourceLogo}</a> {/block:ContentSource}{block:RebloggedFrom}Reblogged From: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}<br>
  898.  
  899. <br><B>POST NOTES:</B><BR>
  900.  
  901. <div align="left">{PostNotes}</div>
  902.  
  903. {/block:PostNotes}
  904.  
  905. </div>
  906.  
  907.  
  908. <br><br>{/block:Chat}
  909.  
  910. {block:Video}
  911.  
  912.  
  913. <div class="content">
  914.  
  915. <CENTER>
  916. {Video-500}
  917. {block:Caption}
  918.  
  919.  
  920. <p>{Caption}</p>
  921. {/block:Caption}
  922. </CENTER>
  923.  
  924. <br>
  925. <span style="float: left;">
  926. {block:Date} {TimeAgo} on <a href="{Permalink}">{Month} {DayOfMonth} {Year}</a> @ {12Hour}:{Minutes}{AmPm}{/block:Date} {block:NoteCount}<a href="{Permalink}">
  927. {NoteCountWithLabel}</a>{/block:NoteCount}</span>
  928.  
  929. <span style="float: right;">
  930. <a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">Reblog</a>
  931. </span>
  932.  
  933.  
  934. <br>
  935.  
  936.  
  937.  
  938.  
  939.  
  940. {block:PostNotes} <br><br>
  941. <B>POST DETAILS:</B><BR>
  942. {block:HasTags}<br>Tagged as:
  943.  
  944. {block:Tags}
  945. <a href="{TagURL}">{Tag}</a>,
  946. {/block:Tags}
  947. {/block:HasTags}{block:ContentSource}<br>Originally Posted by:<a href="{SourceURL}" target="_blank">{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo} {SourceTitle}{/block:NoSourceLogo}</a> {/block:ContentSource}{block:RebloggedFrom}Reblogged From: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}<br>
  948.  
  949. <br><B>POST NOTES:</B><BR>
  950.  
  951. <div align="left">{PostNotes}</div>
  952.  
  953. {/block:PostNotes}
  954.  
  955. </div>
  956.  
  957.  
  958.  
  959. <br><br>{/block:Video}
  960.  
  961.  
  962. {block:Audio}
  963.  
  964. <div class="content">
  965.  
  966. <p align="CENTER">{AudioPlayergrey}</p>
  967. <CENTER>
  968. {block:Caption}
  969. <p>{Caption}</p>
  970. {/block:Caption}
  971. </CENTER>
  972.  
  973. <br>
  974. <span style="float: left;">
  975. {block:Date} {TimeAgo} on <a href="{Permalink}">{Month} {DayOfMonth} {Year}</a> @ {12Hour}:{Minutes}{AmPm}{/block:Date} {block:NoteCount}<a href="{Permalink}">
  976. {NoteCountWithLabel}</a>{/block:NoteCount}</span>
  977.  
  978. <span style="float: right;">
  979. <a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">Reblog</a>
  980. </span>
  981.  
  982.  
  983. <br>
  984.  
  985.  
  986.  
  987. {block:PostNotes} <br><br>
  988. <B>POST DETAILS:</B><BR>
  989. {block:HasTags}<br>Tagged as:
  990.  
  991. {block:Tags}
  992. <a href="{TagURL}">{Tag}</a>,
  993. {/block:Tags}
  994. {/block:HasTags}{block:ContentSource}<br>Originally Posted by:<a href="{SourceURL}" target="_blank">{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo} {SourceTitle}{/block:NoSourceLogo}</a> {/block:ContentSource}{block:RebloggedFrom}Reblogged From: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}<br>
  995.  
  996. <br><B>POST NOTES:</B><BR>
  997.  
  998. <div align="left">{PostNotes}</div>
  999.  
  1000. {/block:PostNotes}
  1001.  
  1002. </div>
  1003.  
  1004. <br><br>{/block:Audio}
  1005.  
  1006. {/block:Posts}
  1007.  
  1008.  
  1009. <center>
  1010. <div class="pagination">
  1011.      
  1012.  
  1013.        
  1014.        
  1015.        
  1016.          
  1017.            <span class="current_page">1</span>
  1018.          
  1019.  
  1020.          
  1021.        
  1022.          
  1023.  
  1024.          
  1025.             <a class="jump_page" href="/page/2">2</a>
  1026.          
  1027.        
  1028.          
  1029.  
  1030.          
  1031.             <a class="jump_page" href="/page/3">3</a>
  1032.          
  1033.        
  1034.          
  1035.  
  1036.          
  1037.             <a class="jump_page" href="/page/4">4</a>
  1038.          
  1039.        
  1040.          
  1041.  
  1042.          
  1043.             <a class="jump_page" href="/page/5">5</a>
  1044.          
  1045.        
  1046.          
  1047.  
  1048.          
  1049.             <a class="jump_page" href="/page/6">6</a>
  1050.          
  1051.        
  1052.          
  1053.  
  1054.          
  1055.             <a class="jump_page" href="/page/7">7</a>
  1056.          
  1057.        
  1058.          
  1059.  
  1060.          
  1061.             <a class="jump_page" href="/page/8">8</a>
  1062.          
  1063.        
  1064.          
  1065.  
  1066.          
  1067.             <a class="jump_page" href="/page/9">9</a>
  1068.          
  1069.        
  1070.          
  1071.  
  1072.          
  1073.             <a class="jump_page" href="/page/10">10</a>
  1074.          
  1075.        
  1076.      
  1077.        
  1078.           <div class="next_page"><a href="/page/2">Next &rarr;</a></div>
  1079.        
  1080.        
  1081.    
  1082. </div>
  1083. <br><br>
  1084. <a href="http://myperfectcharm.tumblr.com" target="_blank"><img src="http://i1133.photobucket.com/albums/m593/myperfectcharm/footer.png" border="0" alt="theme designer"></a>
  1085.  
  1086. </center>
  1087.  
  1088. </div>
  1089.  
  1090.  
  1091. <script type="text/javascript" src="http://static.tumblr.com/53unaru/kx3lgzker/jquery-1.3.2.min.js" charset="utf-8"></script><script type="text/javascript" src="http://static.tumblr.com/53unaru/4jtlgzkf8/easing.js"></script><script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script><script type="text/javascript">$(document).ready(function() {/*var defaults = {containerID: 'moccaUItoTop', // fading element idcontainerHoverClass: 'moccaUIhover', // fading element hover classscrollSpeed: 1200,easingType: 'linear' };*/$().UItoTop({ easingType: 'easeOutQuart' });});</script>
  1092.  
  1093.  
  1094.  
  1095. <style type="text/css">
  1096.  
  1097.  
  1098.  
  1099. #toTop {display:none;text-decoration:none;position:fixed;bottom:10px;right:10px;overflow:hidden;width:60px;height:91px;border:none;text-indent:-999px;background:url(http://i1133.photobucket.com/albums/m593/myperfectcharm/tumblr/STRINGS.png) no-repeat left top;}
  1100.  
  1101. </style>
  1102.  
  1103. <a href="http://myperfectcharm.tumblr.com" target="_blank" style="-moz-border-radius:4px; border-radius:4px;z-index:90;font-size:7px;font-family:tahoma;display:block;text-transform:uppercase;position: fixed;right:5px;top:30px;padding:6px;padding-left:10px;background-color: transparent;color:white;background-color:transparent;background-image:url(http://img263.imageshack.us/img263/1830/transparentg.png);border: 1px solid transparent;letter-spacing:-2px;" title="Visit her blog!">
  1104.  
  1105.  
  1106.  
  1107. <div style="text-align: center; letter-spacing:1px; color:white; line-height: 9px">
  1108.  
  1109. THEME DESIGNER</div>
  1110.  
  1111. </a>
  1112.  
  1113. </body>
  1114.  
  1115. <div id="02" class="popup_block">
  1116.  
  1117. <Center><font size="8" color="#b1b1b1>Ask Me Anything<p></font><iframe frameborder="0" scrolling="yes" width="100%" height="150" src="http://www.tumblr.com/ask_form/awwteenquotes.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  1118. </center></div>
  1119.  
  1120. </div></div></div></div></div></div></div></div></div></div>
  1121.  
  1122. </html>
Language:
To highlight particular lines, prefix each line with @@








freetexthost.in © 2010-2013 - Powered by PASTE 1.0   website by GandhiG.com