Advertisement
manon15

designedrecovery code

Feb 25th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!--code by manon/butscrewmefirst. don't take as your own!-->
  5.  
  6.  
  7. <meta name="color:background" content="#ffffff"/>
  8. <meta name="color:text" content="#000000"/>
  9. <meta name="color:link" content="#000000"/>
  10. <meta name="color:link hover" content="#ddd"/>
  11. <meta name="color:border" content="#000000"/>
  12. <meta name="color:hoverlink text" content="#000000"/>
  13. <meta name="color:scrollbar bg" content="#6b6d6d"/>
  14. <meta name="color:tooltip color" content="#6b6d6d"/>
  15. <meta name="color:title color" content="#000000"/>
  16. <meta name="color:blockquote color" content="#000000"/>
  17.  
  18.  
  19.  
  20. <meta name="text:bg image url" content=""/>
  21. <meta name="color:bold" content=""/>
  22. <meta name="color:bold shadow" content=""/>
  23. <meta name="color:italics" content=""/>
  24. <meta name="color:italics shadow" content=""/>
  25. <meta name="text:title text" content="title">
  26. <meta name="text:Link 1 URL" content="" />
  27. <meta name="text:Link 1" content="link 1" />
  28. <meta name="text:Link 2 URL" content="" />
  29. <meta name="text:Link 2" content="link 2" />
  30. <meta name="text:Link 3 URL" content="" />
  31. <meta name="text:Link 3" content="link 3" />
  32. <meta name="text:Link 4 URL" content="" />
  33. <meta name="text:Link 4" content="link 4" />
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41. <head><title>{Title}</title>
  42. <link rel="shortcut icon" href="{Favicon}">
  43. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  44. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  45.  
  46.  
  47. <link href='http://fonts.googleapis.com/css?family=IM+Fell+Double+Pica+SC' rel='stylesheet' type='text/css'>
  48. <link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
  49. <link href='http://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  50. <link href='http://fonts.googleapis.com/css?family=Prata' rel='stylesheet' type='text/css'>
  51. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  52. <link href='http://fonts.googleapis.com/css?family=Tillana' rel='stylesheet' type='text/css'>
  53. <link href='http://fonts.googleapis.com/css?family=Aguafina+Script' rel='stylesheet' type='text/css'>
  54. <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  55. <link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
  56. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  57. <link href='http://fonts.googleapis.com/css?family=Calligraffitti' rel='stylesheet' type='text/css'>
  58. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  59. <link href='http://fonts.googleapis.com/css?family=Six+Caps' rel='stylesheet' type='text/css'>
  60. <link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
  61. <link href='http://fonts.googleapis.com/css?family=Fondamento' rel='stylesheet' type='text/css'>
  62. <link href='http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css'>
  63. <link href='http://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
  64. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  65. <link href='https://fonts.googleapis.com/css?family=Homemade+Apple' rel='stylesheet' type='text/css'>
  66. <link href='https://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
  67. <link href='https://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'>
  68. <link href='https://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
  69. <link href='https://fonts.googleapis.com/css?family=Ubuntu:700' rel='stylesheet' type='text/css'>
  70.  
  71.  
  72. <script type="text/javascript"
  73. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  74. <script>
  75. $(document).ready(function() {
  76. //
  77. $('a.poplight[href^=#]').click(function() {
  78. var popID = $(this).attr('rel'); //Get Popup Name
  79. var popURL = $(this).attr('href'); //Get Popup href to define size
  80. var query= popURL.split('?');
  81. var dim= query[1].split('&');
  82. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  83. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  84. var popMargTop = ($('#' + popID).height() + 80) / 2;
  85. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  86. //Apply Margin to Popup
  87. $('#' + popID).css({
  88. 'margin-top' : -popMargTop,
  89. 'margin-left' : -popMargLeft
  90. });
  91. $('body').append('<div id="fade"></div>');
  92. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  93. return false;
  94. });
  95. $('a.close, #fade').live('click', function() {
  96. $('#fade , .popup_block').fadeOut(function() {
  97. $('#fade, a.close').remove(); //fade them both out
  98. });
  99. return false;
  100. });
  101. });
  102. </script>
  103.  
  104.  
  105.  
  106.  
  107. <style type="text/css">
  108.  
  109. .popup_block{
  110. display:none;
  111. font-size:12px;
  112. background:#000;
  113. font-family:'calibri';
  114. padding:20px;
  115. border:1px solid #848584; /* if you want a solid white pop-up, delete this */
  116. float:left;
  117. position:fixed;
  118. top:50%;left:50%;
  119. z-index: 99999;
  120. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  121. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  122. box-shadow: 0px 0px 20px #848584; /* delete for solid white */
  123. }
  124.  
  125. *html #fade {position: absolute;}
  126. *html .popup_block {position: absolute;}
  127. #fade {
  128. display:none;
  129. position:fixed;
  130. left:0px;
  131. top:0px;
  132. width:100%;
  133. height:100%;
  134. z-index:9999;
  135. background:#000; /* change to #fff for solid white */
  136. opacity:0.5; /* change to opacity:1; */
  137. }
  138.  
  139.  
  140. /* --- UPDATES ---*/
  141.  
  142.  
  143.  
  144. #bite
  145. #bite a{
  146. display:block
  147. }
  148. #bite .death {
  149. margin-top:0px;filter: alpha(opacity = 0);
  150. opacity:0;-webkit-transition: all 0.5s ease-out;
  151. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  152. }
  153.  
  154. #bite:hover .death {
  155. margin-top:0px;
  156. -webkit-transition: all 0.8s ease-out;
  157. -moz-transition: all 0.8s ease-out;
  158. transition: all 0.8s ease-out;
  159. filter: alpha(opacity = 100);
  160. filter: alpha(opacity = 100);
  161. opacity:100;
  162. }
  163.  
  164. #actualnews {
  165. font-family:'calibri';
  166. font-size:12px;
  167. color: #fff;
  168. width:130px;
  169. height:auto;
  170. padding-top:3px;
  171. left:50%;
  172. margin-left:-665px;
  173. bottom:160px;
  174. text-align:center;
  175. position:fixed;
  176. background:#000;
  177. }
  178.  
  179. #thekey {
  180. width:auto;
  181. letter-spacing:5px;
  182. left:50%;
  183. bottom:195px;
  184. margin-left:155px;
  185. padding:2px;
  186. position:fixed;
  187. font-size:11px;
  188. font-family: 'Prata', serif;
  189. color: #fff;
  190. text-transform:uppercase;
  191. text-shadow: 0px 0px 0px #000;
  192. -ms-transform: rotate(90deg); /* IE 9 */
  193. -webkit-transform: rotate(90deg); /* Safari */
  194. transform: rotate(90deg)
  195.  
  196. }
  197. }
  198.  
  199.  
  200. para {
  201. font-family: 'Prata', serif;
  202. color:#fff;
  203. text-shadow:0 0 2px #fff;
  204. font-size:15px;
  205.  
  206. }
  207.  
  208. /*edit scrollbar*/
  209.  
  210. ::-webkit-scrollbar-thumb {
  211. height:auto;
  212. }
  213.  
  214. ::-webkit-scrollbar {
  215. height:4px;
  216. width:3px;
  217. padding-right:2px;
  218. }
  219. /*edit the body this is what post text looks like, background color, etc.*/
  220.  
  221. body {
  222. background-image:url("http://i.imgur.com/UituZmg.png");
  223. background-position:center bottom;
  224. background-attachment:fixed;
  225. background-repeat:no-repeat;
  226. margin:0px;
  227. background-color:#000;
  228. color:#fff;
  229. font-family:arial;
  230. font-size:10px;
  231. line-height:120%;
  232. overflow-x:hidden;
  233. overflow-y:hidden;
  234. }
  235.  
  236.  
  237. /*edit links*/
  238.  
  239. a {
  240. text-decoration:none;
  241. outline:none;
  242. -moz-outline-style:none;
  243. color:#7a7a7a;
  244. -moz-transition-duration:0.8s;
  245. -webkit-transition-duration:0.8s;
  246. -o-transition-duration:0.8s;
  247. }
  248.  
  249. /*edit link hover*/
  250.  
  251. a:hover {
  252. color:#939192;
  253. outline:none;
  254. -moz-outline-style:none;
  255. text-decoration:none;
  256. border-radius: 20px 20px 20px 20px #000;
  257. }
  258.  
  259. img {
  260. opacity:.8;
  261. -webkit-filter: Grayscale(50%);
  262. -webkit-transition-duration: 0.8s;
  263. -moz-transition-duration:0.8s;
  264. transition-duration:0.8s;
  265. -o-transition-duration:0.8s;
  266. -webkit-filter: blur(1px);
  267. border-radius: 20px 20px 20px 20px #000;
  268. }
  269.  
  270. img:hover {
  271. opacity:1;
  272. -webkit-filter: Grayscale(0%);
  273. -webkit-transition: all 0.8s ease-out;
  274. -moz-transition: all 0.8s ease-out;
  275. transition: all 0.8s ease-out;
  276. -webkit-filter: blur(0px);
  277. border-radius: 20px 20px 20px 20px #000;
  278.  
  279. }
  280.  
  281. blockquote {
  282. padding-left:5px;
  283. border-left:2px solid #570000;
  284.  
  285. }
  286.  
  287. blockquote blockquote {
  288. padding-left:5px;
  289. border-left:2px solid;
  290. }
  291.  
  292. h1 {
  293. font-size:22px;
  294. text-align:left;
  295. font-family:"six caps";
  296. text-align:center;
  297. line-height:105%;
  298. letter-spacing:1px;
  299. color:#570000;
  300. }
  301.  
  302.  
  303.  
  304. #title {
  305. color:#000;
  306. font-family:arial;
  307. font-size:16px;
  308. text-transform:lowercase;
  309. font-weight:bold;
  310. letter-spacing:0px;
  311. padding:4px;
  312. margin-top:-20px;
  313. margin-left:-14px;
  314. position:fixed;
  315. text-align:left;
  316. }
  317.  
  318.  
  319.  
  320. /*sidebar links*/
  321.  
  322. #links {
  323. position: fixed;
  324. font-style:none;
  325. left:50%;
  326. bottom:488px;
  327. margin-left:-225px;
  328. font-size:11px;
  329. word-spacing:2px;
  330. line-height: 850%;
  331. text-align: left;
  332. width:160px;
  333. margin-right: auto;
  334.  
  335. }
  336.  
  337. #links a {
  338. letter-spacing: 1px;
  339. padding:3px;
  340.  
  341. }
  342.  
  343. #links a:hover {
  344. color:#000;
  345. opacity:1;
  346. -webkit-transition: all 0.8s ease-out;
  347. -moz-transition: all 0.8s ease-out;
  348. transition: all 0.8s ease-out;
  349. -webkit-filter:;
  350. }
  351.  
  352. #description {
  353. width:208px;
  354. font-size:11px;
  355. padding:5px;
  356. text-align:justify;
  357. letter-spacing:0px;
  358. line-height:90%;
  359. margin-left:-16px;
  360. margin-top:-2px;
  361. }
  362.  
  363. /* this is the box that comes up when you hover over something with a title*/
  364.  
  365. #s-m-t-tooltip {
  366. max-width:300px;
  367. padding:5px 5px 5px 6px;
  368. margin:20px 0px 0px 20px;
  369. background-image:url('http://i.imgur.com/6yECUsS.gif');
  370. background-color:{color:tooltip color};
  371. font-family:arial;
  372. font-size:9px;
  373. letter-spacing:2px;
  374. text-transform:lowercase;
  375. font-weight:bold;
  376. color:#fff;
  377. z-index:999999999999999999999999999999999999;
  378. }
  379.  
  380. /*next page and previous page*/
  381.  
  382. #pagination {
  383. left:50%;
  384. bottom:530px;
  385. margin-left:50px;
  386. font-size:15px;
  387. position: absolute;
  388. text-align: left;
  389. letter-spacing:4px;
  390. padding-left:87px;
  391. word-spacing:4px;
  392. text-transform:lowercase;
  393.  
  394.  
  395. }
  396.  
  397. #pagination a {
  398. padding:0 3px;
  399. opacity:2;
  400. -webkit-filter: Grayscale(0%);
  401. -webkit-transition: all 0.8s ease-out;
  402. -moz-transition: all 0.8s ease-out;
  403. transition: all 0.8s ease-out;
  404. -webkit-filter: blur(0px);
  405.  
  406. }
  407.  
  408.  
  409. #container {
  410. position: fixed;
  411. height:354px;
  412. width:405px;
  413. text-align:justify;
  414. font-family:'calibri';
  415. text-transform: auto;
  416. left:50%;
  417. margin-left:-223px;
  418. bottom:173px;
  419. overflow: auto;
  420. -ms-transform: rotate(0deg);
  421. -webkit-transform: rotate(0deg);
  422. transform: rotate(0deg);
  423. }
  424.  
  425.  
  426. #post {
  427. width:400px;
  428. text-align:left;
  429. font-size:11px;
  430. line-height:110%;
  431. color:#fff;
  432. margin-left:auto;
  433. margin-right:auto;
  434. }
  435.  
  436.  
  437. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  438.  
  439. b, strong{
  440. color: #570000;
  441. font-size:14px;
  442. font-family:"Prata";
  443. letter-spacing:2px;
  444. line-height:115%;
  445. text-shadow: 0px 0px 0px #000;
  446. font-weight: bold;
  447. text-transform:uppercase;
  448. }
  449.  
  450. i, em, strong {
  451. color: #570000;
  452. font-size:14px;
  453. line-height:115%;
  454. font-family:"satisfy";
  455. letter-spacing:2px;
  456. text-shadow:0px 0px 0px #000;
  457. font-weight: italic;
  458.  
  459. }
  460.  
  461. /*time posted, note count, via and source*/
  462.  
  463. .postinfo {
  464. font-family:'Six caps';
  465. width:387px;
  466. margin-top:1px;
  467. padding:6px;
  468. font-size:15px;
  469. color:#fff;
  470. text-shadow:2px 2px 3px rgba(14,8,8, 1);
  471. background-image:url('http://i.imgur.com/6yECUsS.gif');
  472. opacity:.66;
  473. border-radius: 20px 20px 20px 20px;
  474. letter-spacing:1px;
  475. border-bottom:1px #000;
  476. text-transform:uppercase;
  477. font-style:normal;
  478. text-align:center;
  479. }
  480.  
  481. .postinfo a {
  482. color:#fff;
  483. font-style:normal;
  484. }od now
  485.  
  486. .postinfo a:hover {
  487. color:#bebebe;
  488. }
  489.  
  490.  
  491. /*tags*/
  492.  
  493. .tags {
  494. width:387px;
  495. margin-top:4px;
  496. margin-left:-1px;
  497. padding:2px;
  498. font-family:arial;
  499. letter-spacing:0px;
  500. font-size:10px;
  501. text-align:center;
  502.  
  503. }
  504.  
  505. .tags a {
  506. color:#570000;
  507. }
  508.  
  509. .tags a:hover {
  510. color:#000;
  511. }
  512.  
  513. .postnote {
  514. width:387px;
  515. margin-top:40px;
  516. font-family:arial;
  517. text-transform:lowercase;
  518. font-style:normal;
  519. letter-spacing:0px;
  520. font-size:10px;
  521. text-align:left;
  522. }
  523.  
  524. .verses img {
  525. float:center;
  526. -webkit-filter: grayscale(0%);
  527. width:400px;
  528. height:200px;
  529. }
  530.  
  531. /*here go asks*/
  532.  
  533. #ask {
  534. float:left;
  535. line-height:130%;
  536. border: 1px #000;
  537. font-family:"calibri";
  538. font-size:12px;
  539.  
  540. }
  541.  
  542.  
  543.  
  544.  
  545. /*audio player container*/
  546.  
  547. .playercontainer {
  548. text-align:left;
  549. padding:10px;
  550. padding-left:0px;
  551. background-color:#fff;
  552. width:480px;
  553. }
  554.  
  555. /*artist, song, etc.*/
  556.  
  557. .musicinfo {
  558. padding-top:7px;
  559. padding-left:50px;
  560. color:#000;
  561. text-align:justify;
  562. }
  563.  
  564. /*credit. only change this if you actually make the code your own*/
  565.  
  566. #credit {
  567. position:fixed;
  568. font-size:3px;
  569. color:#2f0000;
  570. font-weight:none;
  571. line-height:50%;
  572. letter-spacing:2px;
  573. right:10px;
  574. bottom:05px;
  575. text-transform:none;
  576. text-align:left;
  577. }
  578.  
  579. #credit a {
  580. letter-spacing: 0px;
  581. padding:3px;
  582. color:#848585;
  583. }
  584.  
  585. #credit a:hover {
  586. background:#000;
  587. color:#848584;
  588. }
  589.  
  590.  
  591.  
  592. {CustomCSS}</style></head><body>
  593.  
  594.  
  595. <!-- begin updates tab -->
  596.  
  597. <div id="bite">
  598. <div id="thekey">HOVER</div>
  599. <div class="death">
  600. <div id="actualnews">
  601. <para><b>words</b></para><p>
  602. more words<br>
  603. <marquee>aaand this is how you make words go across/move!</marquee><br>
  604. <i>here we go hehe</i><p>
  605. bigger space here<br>
  606. and this is how you do a horizontal line!<br>
  607. <HR WIDTH="75%"><br>
  608. hope this helps!
  609.  
  610. </div></div></div>
  611.  
  612. <!-- end updates tab -->
  613.  
  614.  
  615. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  616. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  617. <script>
  618.  
  619. (function($){
  620.  
  621. $(document).ready(function(){
  622.  
  623. $("a[title]").style_my_tooltips({
  624.  
  625. tip_follows_cursor:true,
  626.  
  627. tip_delay_time:50,
  628.  
  629. tip_fade_speed:600,
  630.  
  631. attribute:"title"
  632.  
  633. });
  634.  
  635. });
  636.  
  637. })(jQuery);
  638.  
  639. </script>
  640.  
  641.  
  642.  
  643.  
  644. <div id="links">
  645. <a href="/" title="home">✕</a>
  646.  
  647.  
  648. <a href="#?w=500" title="inquire" rel="box1" class="poplight">✕</a>
  649.  
  650. <a href="#?w=400" title="guidelines" rel="box2" class="poplight">✕</a>
  651.  
  652. <a href="#?w=400" title="biography" rel="box3" class="poplight">✕</a>
  653.  
  654. <a href="#?w=400" title="navigation" rel="box4" class="poplight">✕</a>
  655.  
  656.  
  657.  
  658.  
  659.  
  660.  
  661.  
  662.  
  663. </div>
  664.  
  665. <div id="description">{Description}</div>
  666.  
  667.  
  668. <div id="pagination">
  669. {block:Pagination}
  670. {block:PreviousPage}
  671. <a href="{PreviousPage}">&larr;</a>
  672. {/block:PreviousPage}
  673.  
  674.  
  675. {block:NextPage}
  676. <a href="{NextPage}">&rarr;</a>
  677. {/block:NextPage}
  678. {/block:Pagination}
  679. </div>
  680.  
  681.  
  682.  
  683. </div>
  684.  
  685.  
  686. <div id="container">{block:Posts}<div id="post">
  687.  
  688. {block:Text}<h1>{block:Title}<big><big><center>{Title}</center></big></big>{/block:Title}</h1>{Body}{/block:Text}
  689.  
  690. {block:Quote}<big><b><center>"{Quote}"</center></b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
  691.  
  692. {block:Chat}{block:Title}<h1><center>{Title}</center></h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  693.  
  694. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  695.  
  696. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  697.  
  698. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  699.  
  700. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  701.  
  702.  
  703. {block:AudioPlayer}
  704. <div class="playercontainer"> <div style="padding: 5px 0px 5px 5px;width:inherit;background:#fff; border:2px solid #fff; width:30px;overflow:hidden; position:absolute;font-weight:bold;"> {AudioPlayer}</div><div class="musicinfo">{block:TrackName}<span style="#fff">{TrackName}</span>{/block:TrackName}{block:Artist}<br/>{Artist} {/block:Artist}<br>{block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}</div></div>{block:Caption}{Caption}{/block:Caption}{/block:AudioPlayer}
  705.  
  706. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-40}" style="margin-right:12px;border:1px solid #e3e3e3;padding:3px;"></div> "{Question}"<br>
  707. — {ASKER}<br><br>
  708. {Answer}<br>{/block:Answer}
  709.  
  710. {block:Date}<div class="postinfo"> <a href="{Permalink}">{TimeAgo}</a>   {block:NoteCount}+ {NoteCount}{/block:NoteCount}   {block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}   {block:ContentSource}<a href="{SourceURL}">source</a>{/block:ContentSource}{/block:RebloggedFrom}</div>{/block:Date}
  711.  
  712. {block:HasTags}
  713. <div class="tags">
  714. {block:Tags}<a href="{TagURL}"> ○ {Tag}</a>  {/block:Tags}</div>
  715. {/block:HasTags}
  716.  
  717. <div class="postnote">
  718. {block:PostNotes}{PostNotes}{/block:PostNotes}
  719. </div>
  720. </div>
  721. {/block:Posts}
  722.  
  723.  
  724.  
  725.  
  726. </div></div></div></div>
  727. </div>
  728.  
  729. <div id="credit"><a href="#?w=400" title="credit" rel="box5" class="poplight"><font size="4">
  730. <i>Manon</i></a></font><div>
  731.  
  732. </body>
  733.  
  734. </div></div></div></div></div></div></div></div></div></div>
  735. <div id="box1" class="popup_block">
  736. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  737. </div>
  738. </div></div></div></div></div></div></div></div></div></div>
  739.  
  740. <div id="box2" class="popup_block">
  741. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  742. <center><big><big><b>GUIDELINES</b></big></big><BR>
  743. <HR WIDTH="100%"><br>
  744. CONTENT
  745. CONTENT
  746. CONTENT
  747. </center>
  748. </div>
  749. </div>
  750.  
  751. </div></div></div></div></div></div></div></div></div></div>
  752.  
  753. <div id="box3" class="popup_block">
  754. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  755. <center><big><big><b>BIOGRAPHY</b></big></big><BR>
  756. <HR WIDTH="100%"><br>
  757. CONTENT
  758. CONTENT
  759. CONTENT
  760. </center>
  761. </div>
  762. </div>
  763.  
  764. </div></div></div></div></div></div></div></div></div></div>
  765.  
  766. <div id="box4" class="popup_block">
  767. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  768. <center><big><big><b>NAVIGATION</b></big></big><BR>
  769. <HR WIDTH="100%"><br>
  770. <a href="/LINK HERE">TITLE HERE</a>
  771. <p>
  772. <a href="/LINK HERE">TITLE HERE</a>
  773. <p><a href="/LINK HERE">TITLE HERE</a>
  774. <p><a href="/LINK HERE">TITLE HERE</a>
  775. <p><a href="/LINK HERE">TITLE HERE</a>
  776. <p><a href="/LINK HERE">TITLE HERE</a>
  777. <p>
  778.  
  779.  
  780. </center><p>
  781.  
  782.  
  783. </div>
  784. </div>
  785.  
  786. </div></div></div></div></div></div></div></div></div></div>
  787.  
  788. <div id="box6" class="popup_block">
  789. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  790. <center><big><big><b>VERSES</b></big></big><BR>
  791. <HR WIDTH="100%">
  792. <img src="http://i.imgur.com/AbPJSL3.png" class="verses">
  793. <b><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></b>
  794. <p>
  795. content content content
  796. <p><p>
  797. <img src="http://i.imgur.com/AbPJSL3.png" class="verses">
  798. <b><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></b>
  799. <p>
  800. content content content
  801. <p><p>
  802. </center>
  803. </div>
  804. </div>
  805.  
  806. </div></div></div></div></div></div></div></div></div></div>
  807.  
  808. <div id="box5" class="popup_block">
  809. <center>theme credit goes to &nbsp;<i><a href="http://butscrewmefirst.tumblr.com">Manon</a></i>.<br> do not remove the credit nor claim as your own. if you &nbsp;<b>HAVE</b> to take this credit out, make sure you credit me on a &nbsp;<b>VISIBLE</b> and often visited page.</center>
  810. </div>
  811.  
  812. </div></div></div></div></div></div></div></div></div></div>
  813.  
  814.  
  815.  
  816.  
  817.  
  818.  
  819.  
  820.  
  821.  
  822.  
  823.  
  824.  
  825. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement