Advertisement
brookeabee

Untitled

Feb 4th, 2013
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.64 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html>
  2. <head>
  3.  
  4. <title>PWB | PARTYWITHBACARDI</title>
  5. <link rel="shortcut icon" href="http://i.imgur.com/gkIv06p.png?1">
  6.  
  7. <style>
  8. html, body, a, a:hover {cursor:url('http://i.imgur.com/IepP2.jpg'), auto !important; }
  9. </style>
  10.  
  11. <script type="text/javascript"
  12. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  13.  
  14. <script type="text/javascript">
  15. // <![CDATA[
  16. var colour="#febf9e";
  17. var colour3="#febf9e";
  18. var sparkles=70;
  19.  
  20. /******************************
  21. * Tinkerbell Magic Sparkle *
  22. * (c) 2005 mf2fm web-design *
  23. * http://www.mf2fm.com/rv *
  24. * Generated at pnoyonline.com *
  25. * tumblr layouts - pnoyonline *
  26. * DON'T EDIT BELOW THIS BOX *
  27. ****************************/
  28. var x=ox=400;
  29. var y=oy=300;
  30. var swide=800;
  31. var shigh=600;
  32. var sleft=sdown=0;
  33. var tiny=new Array();
  34. var star=new Array();
  35. var starv=new Array();
  36. var starx=new Array();
  37. var stary=new Array();
  38. var tinyx=new Array();
  39. var tinyy=new Array();
  40. var tinyv=new Array();
  41.  
  42. window.onload=function() { if (document.getElementById) {
  43. var i, rats, rlef, rdow;
  44. for (var i=0; i<sparkles; i++) {
  45. var rats=createDiv(3, 3);
  46. rats.style.visibility="hidden";
  47. document.body.appendChild(tiny[i]=rats);
  48. starv[i]=0;
  49. tinyv[i]=0;
  50. var rats=createDiv(5, 5);
  51. var rats=createDiv3(5, 5);
  52.  
  53. rats.style.backgroundColor="transparent";
  54. rats.style.visibility="hidden";
  55. var rlef=createDiv(1, 5);
  56. var rlef=createDiv3(1, 5);
  57. var rdow=createDiv(5, 1);
  58. var rdow=createDiv3(5, 1);
  59. rats.appendChild(rlef);
  60. rats.appendChild(rdow);
  61. rlef.style.top="2px";
  62. rlef.style.left="0px";
  63. rdow.style.top="0px";
  64. rdow.style.left="2px";
  65. document.body.appendChild(star[i]=rats);
  66. }
  67. set_width();
  68. sparkle();
  69. }}
  70.  
  71. function sparkle() {
  72. var c;
  73. if (x!=ox || y!=oy) {
  74. ox=x;
  75. oy=y;
  76. for (c=0; c<sparkles; c++) if (!starv[c]) {
  77. star[c].style.left=(starx[c]=x)+"px";
  78. star[c].style.top=(stary[c]=y)+"px";
  79. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  80. star[c].style.visibility="visible";
  81. starv[c]=50;
  82. break;
  83. }
  84. }
  85. for (c=0; c<sparkles; c++) {
  86. if (starv[c]) update_star(c);
  87. if (tinyv[c]) update_tiny(c);
  88. }
  89. setTimeout("sparkle()", 40);
  90. }
  91.  
  92. function update_star(i) {
  93. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  94. if (starv[i]) {
  95. stary[i]+=1+Math.random()*3;
  96. if (stary[i]<shigh+sdown) {
  97. star[i].style.top=stary[i]+"px";
  98. starx[i]+=(i%5-2)/5;
  99. star[i].style.left=starx[i]+"px";
  100. }
  101. else {
  102. star[i].style.visibility="hidden";
  103. starv[i]=0;
  104. return;
  105. }
  106. }
  107. else {
  108. tinyv[i]=50;
  109. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  110. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  111. tiny[i].style.width="2px";
  112. tiny[i].style.height="2px";
  113. star[i].style.visibility="hidden";
  114. tiny[i].style.visibility="visible"
  115. }
  116. }
  117.  
  118. function update_tiny(i) {
  119. if (--tinyv[i]==25) {
  120. tiny[i].style.width="1px";
  121. tiny[i].style.height="1px";
  122. }
  123. if (tinyv[i]) {
  124. tinyy[i]+=1+Math.random()*3;
  125. if (tinyy[i]<shigh+sdown) {
  126. tiny[i].style.top=tinyy[i]+"px";
  127. tinyx[i]+=(i%5-2)/5;
  128. tiny[i].style.left=tinyx[i]+"px";
  129. }
  130. else {
  131. tiny[i].style.visibility="hidden";
  132. tinyv[i]=0;
  133. return;
  134. }
  135. }
  136. else tiny[i].style.visibility="hidden";
  137. }
  138.  
  139. document.onmousemove=mouse;
  140. function mouse(e) {
  141. set_scroll();
  142. y=(e)?e.pageY:event.y+sdown;
  143. x=(e)?e.pageX:event.x+sleft;
  144. }
  145.  
  146. function set_scroll() {
  147. if (typeof(self.pageYOffset)=="number") {
  148. sdown=self.pageYOffset;
  149. sleft=self.pageXOffset;
  150. }
  151. else if (document.body.scrollTop || document.body.scrollLeft) {
  152. sdown=document.body.scrollTop;
  153. sleft=document.body.scrollLeft;
  154. }
  155. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  156. sleft=document.documentElement.scrollLeft;
  157. sdown=document.documentElement.scrollTop;
  158. }
  159. else {
  160. sdown=0;
  161. sleft=0;
  162. }
  163. }
  164.  
  165. window.onresize=set_width;
  166. function set_width() {
  167. if (typeof(self.innerWidth)=="number") {
  168. swide=self.innerWidth;
  169. shigh=self.innerHeight;
  170. }
  171. else if (document.documentElement && document.documentElement.clientWidth) {
  172. swide=document.documentElement.clientWidth;
  173. shigh=document.documentElement.clientHeight;
  174. }
  175. else if (document.body.clientWidth) {
  176. swide=document.body.clientWidth;
  177. shigh=document.body.clientHeight;
  178. }
  179. }
  180. /******************************
  181. * Modified by *
  182. * pnoyonline.com *
  183. * Generated at pnoyonline.com *
  184. * tumblr layouts - pnoyonline *
  185. ****************************/
  186. function createDiv(height, width) {
  187. var div=document.createElement("div");
  188. div.style.position="absolute";
  189. div.style.height=height+"px";
  190. div.style.width=width+"px";
  191. div.style.overflow="hidden";
  192. div.style.backgroundColor=colour;
  193. return (div);
  194. }
  195.  
  196.  
  197. function createDiv3(height, width) {
  198. var div=document.createElement("div");
  199. div.style.position="absolute";
  200. div.style.height=height+"px";
  201. div.style.width=width+"px";
  202. div.style.overflow="hidden";
  203. div.style.backgroundColor=colour3;
  204. return (div);
  205. }
  206. // ]]>
  207. </script>
  208.  
  209. <script>
  210. $(document).ready(function() {
  211. //When you click on a link with class of poplight and the href starts with a #
  212. $('a.poplight[href^=#]').click(function() {
  213. var popID = $(this).attr('rel'); //Get Popup Name
  214. var popURL = $(this).attr('href'); //Get Popup href to define size
  215.  
  216. //Pull Query & Variables from href URL
  217. var query= popURL.split('?');
  218. var dim= query[1].split('&');
  219. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  220.  
  221. //Fade in the Popup and add close button
  222. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://i707.photobucket.com/albums/ww76/sheltsm/Simplicity%20graphics/pixels/x.gif" class="btn_close" title="Close Window" alt="Close" /></a>');
  223.  
  224. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  225. var popMargTop = ($('#' + popID).height() + 80) / 2;
  226. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  227.  
  228. //Apply Margin to Popup
  229. $('#' + popID).css({
  230. 'margin-top' : -popMargTop,
  231. 'margin-left' : -popMargLeft
  232. });
  233.  
  234. //Fade in Background
  235. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  236. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  237.  
  238. return false;
  239. });
  240.  
  241. //Close Popups and Fade Layer
  242. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  243. $('#fade , .popup_block').fadeOut(function() {
  244. $('#fade, a.close').remove(); //fade them both out
  245. });
  246. return false;
  247. });
  248. });
  249. </script>
  250.  
  251. <style type="text/css">
  252.  
  253. #fade { /*--Transparent background layer--*/
  254. display: none; /*--hidden by default--*/
  255. background: #fff;
  256. position: fixed; left: 0; top: 0;
  257. width: 100%; height: 100%;
  258. opacity: .80;
  259. z-index: 9999;}
  260.  
  261. .popup_block{
  262. overflow:hidden;
  263. display: none; /*--hidden by default--*/
  264. background: #fff;
  265. padding: 10px;
  266. border: 1px solid #d8d8d8;
  267. float: left;
  268. font-size: 8px;
  269. width: 200px;
  270. font-family:pixel;
  271. position: fixed;
  272. top: 57%; left: 57%;
  273. z-index: 99999;
  274. /*--CSS3 Rounded Corners--*/
  275. -webkit-border-radius: 0px;
  276. -moz-border-radius: 0px;
  277. border-radius: 0px;}
  278.  
  279. img.btn_close {
  280. float: right;
  281. margin: -5px -5px 0 0;}
  282.  
  283. /*--Making IE6 Understand Fixed Positioning--*/
  284. *html #fade {
  285. position: absolute;}
  286.  
  287. *html .popup_block {
  288. position: absolute;}
  289.  
  290. body {
  291. background-image: url('http://i.imgur.com/zp8zrsu.png');
  292. background-attachment: fixed;
  293. background-repeat: repeat-xy;}
  294.  
  295. body, div, p, textarea, submit, input {
  296. color:#a4a4a4;
  297. font-family:"pixel";
  298. font-size:8px;
  299. line-height:9px;
  300. text-transform:lowercase;
  301. letter-spacing:0px;
  302. font-weight:normal;
  303. text-align: justify;}
  304.  
  305. r{
  306. font-family: pixel;
  307. font-size: 8px;
  308. color:#fba2a6;
  309. text-transform: uppercase;}
  310.  
  311. o{
  312. font-family: pixel;
  313. font-size: 8px;
  314. color:#a9e087;
  315. text-transform: uppercase;}
  316.  
  317. c{
  318. font-family: pixel;
  319. font-size: 8px;
  320. color:#cce68c;
  321. text-transform: uppercase;}
  322.  
  323. k{
  324. font-family: pixel;
  325. font-size: 8px;
  326. color:#fbc099;
  327. text-transform: uppercase;}
  328.  
  329. ::-webkit-scrollbar-thumb:vertical{
  330. background-color:#cce68c;
  331. border-right: 2px solid #ffffff;
  332. border-left: 2px solid #ffffff;
  333. border-top: solid white 3px;
  334. ;}
  335.  
  336. ::-webkit-scrollbar{
  337. width:12px;
  338. height:12px;
  339. background-color:white;}
  340.  
  341. ::-webkit-scrollbar-corner{
  342. background-color:white;}
  343.  
  344.  
  345.  
  346. .banner{
  347. top:-1px;
  348. z-index:1;
  349. left:287px;
  350. width:653px;
  351. height:168px;
  352. position:fixed;
  353. background-color:#fff;
  354. background-image:url(http://i.imgur.com/JxEAdZj.png);
  355. background-repeat:no-repeat;}
  356.  
  357. #container {
  358. margin-left: 490px;
  359. margin-top:167px;
  360. padding-left:5px;
  361. background-color: #f9f9f9;
  362. overflow:hidden;
  363. width:438px;}
  364.  
  365. #sidebar {
  366. position:fixed !important;
  367. width:200px;
  368. height:auto;
  369. margin-left:280px;
  370. margin-top:-2px;
  371. background-color: #f9f9f9;
  372. border:4px solid #ffffff;
  373. padding:0px;
  374. padding-left: 4px;
  375. padding-right: 4px;
  376. text-align:justify;}
  377.  
  378. #posts {
  379. width: 600px;
  380. margin-top:1px;
  381. float:left;
  382. margin-left:-2px;
  383. {block:PermalinkPage}
  384. {/block:PermalinkPage}}
  385.  
  386. .bubble {
  387. align:center;
  388. background: #EEEEEE;
  389. margin:7px 0px 5px 66px;
  390. padding:10px;
  391. position: relative;
  392. -moz-border-radius:5px;
  393. -webkit-border-radius:5px;border-radius:5px;}
  394.  
  395. .bubble p {margin:1px 0px;}
  396.  
  397. .bubble span {
  398. display:block;
  399. position:absolute;
  400. width:1px;
  401. height:1px;
  402. font-size: 0;
  403. line-height: 1px;
  404. left:-20px;
  405. top:10px;
  406. border-top:7px solid transparent;
  407. border-bottom:7px solid transparent; border-right:10px solid #EEEEEE;}
  408.  
  409. .askborder {
  410. float: right;
  411. margin: 1px 4px 0 0;
  412. padding: 2px;
  413. background: #EEEEEE;}
  414.  
  415. @font-face {font-family: "lora"; src: url('http://static.tumblr.com/dcjqcpf/yfBmd5792/lora-italic.ttf');}
  416.  
  417. @font-face { font-family: "lobster"; src: url('http://themes.googleusercontent.com/static/fonts/lobster/v3/MWVf-Rwh4GLQVBEwbyI61Q.woff'); }
  418.  
  419. @font-face{
  420. font-family:"pixel";
  421. src:url('http://static.tumblr.com/spzdac4/wiqm8nrs6/sodeliciouss.ttf');}
  422.  
  423. a:link, a:active, a:visited {
  424. color:#7c7c7c;
  425. text-decoration: none;}
  426.  
  427. a:hover {color:#FFFFFF; text-decoration: none;}
  428.  
  429. b {color:#fc764d; font-weight:normal;}
  430. i {color:#515151;}
  431. u {color:#515151;}
  432.  
  433. big {
  434. font-family:century gothic;
  435. font-size:16px;
  436. font-style:bold;
  437. line-height:16px;
  438. color:#515151;
  439. text-transform:uppercase;
  440. letter-spacing:0px;
  441. font-weight:bold;}
  442.  
  443. h2 {
  444. color: #cccccc;
  445. font-family: "courier new";
  446. font-size: 11px;
  447. text-decoration: none;
  448. text-transform: uppercase;
  449. letter-spacing: -1px;
  450. line-height: 13px;
  451. font-weight: normal;
  452. text-align: left;
  453. padding: 1px;
  454. background-color:#ffffff;
  455. border-bottom: 1px dotted #cbcbcb;
  456. margin: 0px;
  457. margin-bottom: 2px;}
  458.  
  459. h2:first-letter {color: #fba2a6;}
  460.  
  461. .favorites {
  462. width:32px;
  463. height:32px;
  464. margin:0;
  465. margin-left: -1px;
  466. margin-top:2px;
  467. margin-bottom:-1px;
  468. padding:2px;
  469. background: white;
  470. border: 1px solid #cccccc;}
  471.  
  472. .favorites:hover {
  473. border:1px solid #fba2a6;}
  474.  
  475.  
  476. .BOTW {
  477. width:195px;
  478. height:46px;
  479. margin:0;
  480. margin-left: -1px;
  481. margin-top:3px;
  482. margin-bottom:-1px;
  483. padding:2px;
  484. background: white;
  485. border: 1px solid #cccccc;}
  486.  
  487. .BOTW:hover {
  488. border:1px solid #fba2a6;}
  489.  
  490. #featuredblogs{
  491. margin-top: 72px;
  492. margin-left: 940px;
  493. position: fixed;
  494. z-index:3;
  495. width: 145px;
  496. background:#ffffff;
  497. padding: 4px;
  498. text-align: left;
  499. border: 1px double #d8d7d7;
  500. outline: 1px solid #d8d7d7;
  501. outline-offset: -3px;}
  502.  
  503. .title {
  504. font-family:"courier new";
  505. font-size:16px;
  506. line-height:16px;
  507. color:#ffffff;
  508. DISPLAY: BLOCK;
  509. padding: 1px;
  510. background-color:#fba2a6;
  511. text-transform:uppercase;
  512. letter-spacing:-1px;}
  513.  
  514. blockquote {
  515. width:185px;
  516. margin-left: 10px;
  517. padding-left:2px;
  518. text-align:left;
  519. color:#515151;
  520. font-family:"pixel";
  521. font-size:8px;
  522. background-color: #EEEEEE;}
  523.  
  524. #tumblr_controls {position:fixed !important;}
  525.  
  526. a.navlink1, a.navlink1:link, a.navlink1:active, a.navlink1:visited {
  527. display:inline-block;
  528. color: #666666;
  529. font-family: "lora";
  530. font-size: 20px;
  531. text-decoration: none;
  532. text-transform: lowercase;
  533. letter-spacing: 0px;
  534. line-height: 22px;
  535. font-weight: normal;
  536. text-align: center;
  537. padding: 0px;}
  538.  
  539. a.navlink1:hover {color:#eeeeee;}
  540.  
  541. .entry {
  542. background-color: #FFFFFF;
  543. border: 1px solid #d8d8d8;
  544. margin-left:2px;
  545. margin-top:1px;
  546. padding: 2px;
  547. padding-bottom: 2px;
  548. margin-bottom: 4px;
  549. float:left;
  550. position:center;
  551. font-size: 8px;
  552. line-height:8px;
  553. {block:IndexPage}
  554. width:210px;
  555. {/block:IndexPage}
  556. {block:PermalinkPage}
  557. width:425px;
  558. {/block:PermalinkPage}}
  559.  
  560. a.navi3:link, a.navi3:active, a.navi3:visited{
  561. font-family: courier new;
  562. font-size: 20px;
  563. text-transform: uppercase;
  564. color: #ffffff;
  565. line-height: 20px;
  566. background-color: #a9e087;
  567. DISPLAY: BLOCK;
  568. margin-top: 2px;
  569. margin-bottom: 4px;
  570. text-align: left;
  571. letter-spacing: -1px;
  572. -webkit-transition-duration: 1.0s;}
  573.  
  574. a.navi3:hover{color:#ffffff; }
  575.  
  576. .notes{
  577. width:110px;
  578. height:10px;
  579. color:#b5a5f4;
  580. float:left;
  581. opacity:0;
  582. font-family:pixel;
  583. font-size:8px;
  584. margin-top:5px;
  585. margin-left:5px;
  586. padding-top:0px;
  587. position:absolute;
  588. text-align:center;
  589. line-height:10px;
  590. letter-spacing:0px;
  591. text-transform:uppercase;
  592. background-color:#fff;
  593. -webkit-transition: all 0.8s ease-out;
  594. -moz-transition:all 0.8s ease-out;
  595. transition:all 0.8s ease-out;}
  596.  
  597. .entry:hover .notes{
  598. margin-top:5px;
  599. opacity:0.8;
  600. -webkit-transition: all 0.8s ease-out;
  601. -moz-transition:all 0.8s ease-out;
  602. transition:all 0.8s ease-out;}
  603.  
  604. #infscr-loading {display:none;}
  605.  
  606. A.NAVPWB, A.NAVPWB:LINK, A.NAVPWB:ACTIVE, A.NAVPWB:VISITED {
  607. font-family: arial black;
  608. color: #d5d5d5;
  609. font-size: 20px;
  610. text-decoration: none;
  611. text-align: center;
  612. line-height:15px;
  613. text-transform: uppercase;
  614. letter-spacing: -1px;
  615. margin-bottom:0px;
  616. -webkit-transition: all 0.4s ease-out;}
  617.  
  618. A.NAVPWB:HOVER {
  619. color: #b5a5f4;
  620. -webkit-transition: all 0.4s ease-out;}
  621.  
  622. div.navigate a{
  623. padding: 2px;
  624. background-color: #0074ae;
  625. font-family: pixel;
  626. letter-spacing: 0px;
  627. word-spacing: 0px;
  628. color: #000;
  629. font-size: 8px;
  630. line-height:8px;
  631. text-align: center;
  632. width: 113px;
  633. text-transform: uppercase;
  634. text-decoration: none;
  635. margin-top: 60px;
  636. -webkit-transition-duration: .4s;
  637. z-index:1;}
  638.  
  639.  
  640. {CustomCSS}
  641. </style>
  642.  
  643. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  644. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  645.  
  646. <script type="text/javascript">
  647. $(window).load(function () {
  648. var $content = $('#posts');
  649. $content.masonry({itemSelector: '.entry'}),
  650. $content.infinitescroll({
  651. navSelector : 'div#pagination',
  652. nextSelector : 'div#pagination a#nextPage',
  653. itemSelector : '.entry',
  654.  
  655. loading: {
  656. finishedMsg: '',
  657. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  658. },
  659.  
  660. bufferPx : 600,
  661. debug : false,
  662. },
  663.  
  664. // call masonry as a callback.
  665. function( newElements ) {
  666. var $newElems = $( newElements );
  667. $newElems.hide();
  668. // ensure that images load before adding to masonry layout
  669. $newElems.imagesLoaded(function(){
  670. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  671. });
  672.  
  673. });
  674.  
  675. });
  676. </script>
  677. {/block:IndexPage}
  678. </head>
  679.  
  680. <body>
  681.  
  682. <div class="banner"></div>
  683. <div id=”top”></div>
  684.  
  685. <div id="sidebar">
  686. <td align="justify">
  687.  
  688. <div style="margin-top: 4px; margin-bottom: 0px; "><h2>a little more about the blogette.</h2></div>
  689.  
  690. <img src="http://25.media.tumblr.com/53da11caf4344d66a2a390cd9c6768a2/tumblr_mfkk3byXsH1rn4qvno1_500.gif" width="100%">
  691.  
  692. <div id="navigate"><div style="margin-top: -90px; margin-bottom: 20px; ">
  693. <a style="border: 1px solid #eeeeee; padding: 1px; background-color:#ffffff; opacity: 0.7; margin-left: 160px; color: #cccccc;" href="/">/clear</a><br><br>
  694. <a style="border: 1px solid #eeeeee; background-color:#ffffff; opacity: 0.7; color: #cccccc; padding: 1px; margin-left: 160px; "href="#?w=250" rel="05" class="poplight">+ links</a><br><br>
  695. <a style="border: 1px solid #eeeeee; padding: 1px; background-color:#ffffff; opacity: 0.7; color: #cccccc; margin-left: 160px;" href="#?w=300" rel="06" class="poplight">ask me</a><br><br>
  696. <a style="border: 1px solid #eeeeee; padding: 1px; background-color:#ffffff; opacity: 0.7; margin-left: 160px; color: #cccccc;" href="http://pinkparadisethemes.tumblr.com/">themes</a><br><br>
  697. </div>
  698. </div>
  699.  
  700. <center><div style="width: 200px; height: 57px; margin-top: -1px; margin-bottom: 9px; font-family:pixel; color:#a4a4a4; font-size: 8px; text-align: justify; line-height: 9px; background-color: #f9f9f9; background-image: url();"><r>hey babe,</r> welcome to my blog! <o>I'm carly.</o> I am an <c>eighteen year old </c> blogger who's currently residing <k>in the 202 </k> area code but <r>was born and</r> raised in the <o> state of new york. </o> I'm currently <c> single </c> and I'm a <k>full time student</k> as a <r>nursing major.</r> I am a <o> full time bitch </o> with the <c> mouth of a trucker, </c> but a total <k> girly girl </k> at heart xo</div></center>
  701.  
  702. <h2>follow all these beautiful blogs.</h2>
  703. <a href="http://bralettexo.tumblr.com/"><img src="http://i.imgur.com/pOhuq.png" class="favorites"></a>
  704. <a href="http://lashblastt.tumblr.com/"><img src="http://i.imgur.com/FUCkMry.png" class="favorites"></a>
  705. <a href="http://toofacedd.tumblr.com/"><img src="http://i.imgur.com/xB7RU4o.png" class="favorites"></a>
  706. <a href="http://sugarstiick.tumblr.com/"><img src="http://i.imgur.com/96CHW3j.png" class="favorites"></a>
  707. <a href="http://caribbeantan.tumblr.com/"><img src="http://i.imgur.com/y6cI5M1.png" class="favorites"></a>
  708.  
  709. <br>
  710.  
  711. <div style="margin-top: 4px;"><h2> go check out my blog of the week. </h2></div>
  712. <a href="http://n4ilpolished.tumblr.com/"><img src="http://i.imgur.com/VVySuup.png" class="BOTW"></a>
  713.  
  714. <br>
  715.  
  716. <div style="margin-top: 6px;"><h2> music player and blog statistics. </h2></div>
  717.  
  718. <div style="background-color: #ffffff; margin-top: 6px;">
  719. <center><r>online:</r> <script language="JavaScript">
  720. var ref = (''+document.referrer+'');
  721. document.write('<script src="http://s1.freehostedscripts.net/ocounter.php?site=ID2290441&e1=&e2=&r=' + ref + '"><\/script>');
  722. </script> |&nbsp;| <o>visits:</o> <script language="JavaScript" src="http://s1.freehostedscripts.net/ocount.php?site=ID1753137&name="></script> |&nbsp;| <c> joined: </c> march 2011 </center>
  723.  
  724. <br>
  725.  
  726. <div style="width: 190px; height: 5px; background-color: #ffffff; margin-top: -5px; margin-bottom: -2px; font-family:pixel; padding: 4px; color:#393939; font-size: 8px; text-align: justify; line-height: 6px; background-image: url();"><font color="#FBA2A6">n</font><font color="#FBA4A5">o</font><font color="#FBA6A4">t</font><font color="#FBA8A3">e</font><font color="#FBABA2">:</font><font color="#FBADA1"> </font><font color="#FBAFA0">I</font><font color="#FBB1A0"> </font><font color="#FBB39F">t</font><font color="#FBB59E">r</font><font color="#FBB79D">a</font><font color="#FBBA9C">c</font><font color="#FBBC9B">k</font><font color="#FBBE9A"> </font><font color="#FBC099">t</font><font color="#F8C398">h</font><font color="#F5C597">e</font><font color="#F2C896"> </font><font color="#EECA96">t</font><font color="#EBCD95">a</font><font color="#E8CF94">g</font><font color="#E5D293"> </font><font color="#E2D492">"</font><font color="#DFD791"> </font><font color="#DCD990">p</font><font color="#D9DC8F">a</font><font color="#D5DE8F">r</font><font color="#D2E18E">t</font><font color="#CFE38D">y</font><font color="#CCE68C">w</font><font color="#CAE68C">i</font><font color="#C7E58B">t</font><font color="#C5E58B">h</font><font color="#C2E48B">b</font><font color="#C0E48A">a</font><font color="#BDE38A">c</font><font color="#BBE389">a</font><font color="#B8E389">r</font><font color="#B6E289">d</font><font color="#B3E288">i</font><font color="#B1E188"> </font><font color="#AEE188">"</font><font color="#ACE087"> </font><font color="#A9E087">❤</font></div>
  727.  
  728. <center><object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_mini.swf" width="200" height="20">
  729. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_mini.swf" />
  730. <param name="bgcolor" value="#ffffff" />
  731. <param name="FlashVars" value="mp3=http%3A//k007.kiwi6.com/hotlink/lodpk9dxul/wanna_say.mp3&amp;autoplay=1&amp;bgcolor=ffffff&amp;loadingcolor=d8d8d8&amp;buttoncolor=d8d8d8&amp;slidercolor=d8d8d8" />
  732. </object></center>
  733.  
  734. </div>
  735.  
  736. <br><br><br><br>
  737. <!-- Start: TraceMyIP.org Code //-->
  738. <script type="text/javascript" src="http://s2.tracemyip.org/tracker/lgUrl.php?stlVar2=1209&amp;rgtype=4684NR-IPIB&amp;pidnVar2=44257&amp;prtVar2=5&amp;scvVar2=12"></script><noscript><a href="http://www.tracemyip.org/" target="_blank"><img src="http://s2.tracemyip.org/tracker/1209/4684NR-IPIB/44257/5/12/ans/" alt="website hit counter" border="0"></a></noscript>
  739. <!-- End: TraceMyIP.org Code //-->
  740.  
  741. </div>
  742.  
  743.  
  744. <div id="container">
  745. <div id="posts">
  746. {block:Posts}
  747. <div class="entry">
  748. {block:IndexPage}
  749. <div class="notes">
  750. <a href="{permalink}">{NoteCountWithLabel}</a> → <a href="{ReblogURL}">Reblog</a></span></div>
  751. {/block:IndexPage}
  752. {block:Text}
  753. {block:Title}<span class="title">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>
  754. {/block:Text}
  755. {block:Link}<a href="{URL}" class="navi3">{Name}</a>{block:Description}{Description}{/block:Description}{/block:link}
  756.  
  757. {block:Photo}
  758.  
  759. {block:IndexPage}<div class="permalink"><center> <a href="{Permalink}">{NoteCountWithLabel}</a> // <a href="{ReblogURL}" target="_blank">Reblog</a> </center></div> {/block:IndexPage}
  760.  
  761. {block:indexpage}<a href="{permalink}"><img src="{PhotoURL-500}" width="250"/></a>{/block:indexpage}
  762.  
  763. {block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" width="522" alt="{PhotoAlt}"/>{LinkCloseTag}{/block:PermalinkPage}
  764. {/block:Photo}
  765.  
  766. {block:Photoset}
  767. {block:IndexPage}
  768. <center>
  769. {Photoset-250}</center>
  770. {/block:IndexPage}
  771. {block:PermalinkPage}
  772. <center>
  773. {Photoset-500}</center>
  774. {/block:PermalinkPage}
  775. {/block:Photoset}
  776. {block:Answer}
  777. <div style="margin: 0px; padding: 3px; color: #a4a4a4; background-color: #efefef;"> <r>{Asker}:</r> {Question}</div>
  778. <div style="margin-top: -4px; margin-bottom: -4px;">{Answer}</div>
  779. {/block:Answer}
  780. {block:Quote}
  781. <center>"<i>{Quote}</i>"</center></span>
  782. <div align="right">{block:Source}<a>-<b>{Source}</b></a>{/block:Source}</div>
  783.  
  784. {/block:Quote}
  785. {block:Chat}
  786. {block:Title}<span class="title">{Title}</span>{/block:Title}
  787. <ul class="chat">
  788. {block:Lines}
  789. <li class="user_{UserNumber}">
  790. {block:Label}
  791. <span class="label">{Label}</span>
  792. {/block:Label}
  793. {Line}
  794. </li>
  795. {/block:Lines}
  796. </ul>
  797. {/block:Chat}
  798. {block:Audio}
  799.  
  800. <center>
  801. <div style="width:100%; height:28px;"><div style="float:left">
  802. {AudioPlayerWhite}
  803. </div>
  804.  
  805. <div style="margin-top:10px; float:right;">
  806. {block:ExternalAudio}{/block:ExternalAudio}
  807. </div>
  808.  
  809. </div></center>
  810. {/block:Audio}
  811. {block:Video}
  812. {block:IndexPage}
  813.  
  814. <center>
  815. {Video-150}</center>
  816. {/block:IndexPage}
  817. {block:PermalinkPage}
  818.  
  819. <center>
  820. {Video-500}</center>
  821. {/block:PermalinkPage}
  822. {block:Video}
  823. {block:PermalinkPage}
  824.  
  825. <center>
  826. <br>{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
  827. {/block:PermalinkPage}
  828. {block:PostNotes}{PostNotes}
  829. {/block:PostNotes}
  830. </div>
  831.  
  832. {/block:Posts}
  833. </div>
  834. </div>
  835.  
  836.  
  837. {block:IndexPage}
  838. {block:Pagination}
  839.  
  840. <div id="pagination">
  841. {block:NextPage}
  842. <a id="nextPage" href="{NextPage}">&nbsp;</a>
  843. {/block:NextPage}
  844. {block:PreviousPage}
  845. <a href="{PreviousPage}">&nbsp;</a>
  846. {/block:PreviousPage}
  847. </div>
  848.  
  849. {/block:Pagination}
  850. {/block:IndexPage}
  851.  
  852. </div>
  853.  
  854. <div id="05" class="popup_block">
  855. <center><div style="width: 250px; height: 10px; margin-top: 3px; font-family:pixel; color:#a4a4a4; font-size: 8px; text-align: left; line-height: 10px; background-color: #ffffff; margin-bottom: 2px; border-bottom: 1px dotted #a4a4a4; background-image: url();">continue searching </div></center>
  856. <img src="http://i.imgur.com/eeI32.gif" /> <r>{ prsnl }</r>
  857. <a href="/tagged/personal"> uploads </a> || <a href="/tagged/me"> my face </a> || <a href="/tagged/conversations"> my conversations </a>
  858.  
  859. <br>
  860.  
  861. <img src="http://i.imgur.com/eeI32.gif" /> <o>{ +blog }</o> <a href-"/tagged/support"> support </a> || <a href="/blogroll"> blogroll </a> || <a href="/fanmade"> fan signs </a> || <a href="/promo"> promotion </a>
  862.  
  863. <br>
  864.  
  865. <img src="http://i.imgur.com/eeI32.gif" /> <c>{ yours }</c> <a href="/banners">Banners</a> || <a href="/tagged/graphics">Graphics</a> ||
  866. <a href="/customthemes">Custom Themes</a><br>
  867.  
  868. <img src="http://i.imgur.com/eeI32.gif" /> <k>{ blogs }</k> <a href="http://sexxified.tumblr.com/"> Sex </a> || <a href="http://vodkakiisses.tumblr.com/"> Party </a> || <a href="http://giirlyfitness.tumblr.com/"> Fitness </a> || <a href="http://balikisses.tumblr.com/"> Personal || <a href="http://misscarlyann.tumblr.com/"> Photography </a>
  869.  
  870.  
  871. </div>
  872.  
  873. <div id="06" class="popup_block">
  874. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;Sending me some hate? I don't give a fuck <br>
  875. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;I made this theme, background and banner<br>
  876. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;I'm Carly, eighteen and I'm from New York <br>
  877. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;Do not ask me how many followers I have <br>
  878. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;I have a tattoo that says "Shall we dance?" <br>
  879. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;I'll answer html if you're using MY themes<br>
  880. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;Yes I will promote, vote for or follow you <br>
  881. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;Song playing is "Wanna Say" by Kat Graham <br>
  882. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;I will make you a banner, just click <a href="http://partywithbacardi.tumblr.com/banners">h e r e </a> <br>
  883. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;I only make free customs for close friends <br>
  884. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;The girl in my sidebar gif is Melanie Iglesias <br>
  885.  
  886.  
  887.  
  888. <br>
  889.  
  890. <center> if your question has not been answered above, feel free ask me below </center>
  891.  
  892. <br>
  893.  
  894. <iframe frameborder="0" scrolling="no" width="100%" height="150px" src="http://www.tumblr.com/ask_form/partywithbacardi.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe> <!—[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script>
  895.  
  896. </div>
  897.  
  898. <div id="08" class="popup_block">
  899. <center><div style="width: 200px; height: 10px; margin-top: 3px; font-family:pixel; color:#515151; font-size: 8px; text-align: left; line-height: 10px; background-color: #ffffff; margin-bottom: 2px; border-bottom: 1px dotted #515151; background-image: url();">networks I own </div></center>
  900.  
  901. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://thebacardinetwork.tumblr.com/">The Bacardi Network </a><br>
  902. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://theprettylittleliarsnetworkk.tumblr.com/">Pretty Little Liars Network </a><br>
  903.  
  904. <center><div style="width: 200px; height: 10px; margin-bottom: 2px; margin-top: 3px; font-family:pixel; color:#515151; font-size: 8px; text-align: left; line-height: 10px; background-color: #ffffff; border-bottom: 1px dotted #515151; background-image: url();">networks I'm in </div></center>
  905.  
  906. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://goldlistblogs.tumblr.com/">Gold List Blogs </a><br>
  907. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://thepinkvanitynetwork.tumblr.com/">Pink Vanity Network</a><br>
  908. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://the-barbied0lls.tumblr.com/">The Barbie Dolls</a><br>
  909. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://leopardpinklist.tumblr.com/
  910. ">Leopard Pink List</a><br>
  911. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://d-amondclub.tumblr.com/">Diamond Club</a><br>
  912. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://tanlinesnetwork.tumblr.com/">Tanlines Network</a><br>
  913. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://sparklemakeupnetwork.tumblr.com/">Sparkle Makeup Network</a><br>
  914. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://badbitchnetwerk.tumblr.com/">Bad Bitch Network</a><br>
  915. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://disneynw.tumblr.com/">Disney Network</a><br>
  916. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://snpbcknetwork.tumblr.com/">Snapback Network</a><br>
  917. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://naughtyornicenetwork.tumblr.com/">Naughty or Nice Network</a><br>
  918. <img src="http://i.imgur.com/eeI32.gif" />&nbsp;<a href="http://therealhousewivesnetwork.tumblr.com/">Real Housewives Network</a><br>
  919. </div>
  920.  
  921. </div></div></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement