Advertisement
manon15

jimmy darling code

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