Advertisement
manon15

heroicbeliever code

Feb 19th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.55 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:150px;
  169. height:auto;
  170. padding-top:3px;
  171. left:50%;
  172. margin-left:475px;
  173. bottom: 460px;
  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:130px;
  184. margin-left:-107px;
  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 2px #fff;
  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/ngjFRKv.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. /*edit links*/
  237.  
  238. a {
  239. text-decoration:none;
  240. outline:none;
  241. -moz-outline-style:none;
  242. color:#fff;
  243. -moz-transition-duration:0.8s;
  244. -webkit-transition-duration:0.8s;
  245. -o-transition-duration:0.8s;
  246. }
  247.  
  248. /*edit link hover*/
  249.  
  250. a:hover {
  251. color:#000;
  252. outline:none;
  253. -moz-outline-style:none;
  254. text-decoration:none;
  255. }
  256.  
  257. img {
  258. opacity:.8;
  259. -webkit-filter: Grayscale(50%);
  260. -webkit-transition-duration: 0.8s;
  261. -moz-transition-duration:0.8s;
  262. transition-duration:0.8s;
  263. -o-transition-duration:0.8s;
  264. -webkit-filter: blur(1px);
  265. }
  266.  
  267. img:hover {
  268. opacity:1;
  269. -webkit-filter: Grayscale(0%);
  270. -webkit-transition: all 0.8s ease-out;
  271. -moz-transition: all 0.8s ease-out;
  272. transition: all 0.8s ease-out;
  273. -webkit-filter: blur(0px);
  274.  
  275. }
  276.  
  277. blockquote {
  278. padding-left:5px;
  279. border-left:2px solid #fff;
  280.  
  281. }
  282.  
  283. blockquote blockquote {
  284. padding-left:5px;
  285. border-left:2px solid;
  286. }
  287.  
  288. h1 {
  289. font-size:22px;
  290. text-align:left;
  291. font-family:"six caps";
  292. text-align:center;
  293. line-height:105%;
  294. letter-spacing:1px;
  295. color:#3d5154;
  296. }
  297.  
  298.  
  299.  
  300. #title {
  301. color:#000;
  302. font-family:arial;
  303. font-size:16px;
  304. text-transform:lowercase;
  305. font-weight:bold;
  306. letter-spacing:0px;
  307. padding:4px;
  308. margin-top:-20px;
  309. margin-left:-14px;
  310. position:fixed;
  311. text-align:left;
  312. }
  313.  
  314.  
  315.  
  316. /*sidebar links*/
  317.  
  318. #links {
  319. position: fixed;
  320. font-style:none;
  321. left:50%;
  322. bottom:510px;
  323. margin-left:-67px;
  324. font-size: 8px;
  325. word-spacing:7px;
  326. line-height: 850%;
  327. text-align: left;
  328. width: 250px;
  329. margin-right: auto;
  330.  
  331. }
  332.  
  333. #links a {
  334. letter-spacing: 1px;
  335. padding:3px;
  336.  
  337. }
  338.  
  339. #links a:hover {
  340. color:#000;
  341. opacity:1;
  342. -webkit-transition: all 0.8s ease-out;
  343. -moz-transition: all 0.8s ease-out;
  344. transition: all 0.8s ease-out;
  345. -webkit-filter:;
  346. }
  347.  
  348. #description {
  349. width:208px;
  350. font-size:11px;
  351. padding:5px;
  352. text-align:justify;
  353. letter-spacing:0px;
  354. line-height:90%;
  355. margin-left:-16px;
  356. margin-top:-2px;
  357. }
  358.  
  359. /* this is the box that comes up when you hover over something with a title*/
  360.  
  361. #s-m-t-tooltip {
  362. max-width:300px;
  363. padding:5px 5px 5px 6px;
  364. margin:20px 0px 0px 20px;
  365. background-image:url('http://i.imgur.com/IDfmVAh.png');
  366. background-color:{color:tooltip color};
  367. font-family:arial;
  368. font-size:9px;
  369. letter-spacing:2px;
  370. text-transform:lowercase;
  371. font-weight:bold;
  372. color:#fff;
  373. z-index:999999999999999999999999999999999999;
  374. }
  375.  
  376. /*next page and previous page*/
  377.  
  378. #pagination {
  379. left:50%;
  380. bottom:540px;
  381. margin-left:57px;
  382. font-size:15px;
  383. position: absolute;
  384. text-align: left;
  385. letter-spacing:4px;
  386. padding-left:87px;
  387. word-spacing:4px;
  388. text-transform:lowercase;
  389.  
  390.  
  391. }
  392.  
  393. #pagination a {
  394. padding:0 3px;
  395. opacity:2;
  396. -webkit-filter: Grayscale(0%);
  397. -webkit-transition: all 0.8s ease-out;
  398. -moz-transition: all 0.8s ease-out;
  399. transition: all 0.8s ease-out;
  400. -webkit-filter: blur(0px);
  401.  
  402. }
  403.  
  404.  
  405. #container {
  406. position: fixed;
  407. height: 430px;
  408. width: 255px;
  409. text-align:justify;
  410. font-family:'calibri';
  411. text-transform: auto;
  412. left:50%;
  413. margin-left:-57px;
  414. bottom:100px;
  415. overflow: auto;
  416. -ms-transform: rotate(0deg);
  417. -webkit-transform: rotate(0deg);
  418. transform: rotate(0deg);
  419. }
  420.  
  421.  
  422. #post {
  423. width:250px;
  424. text-align:left;
  425. font-size:11px;
  426. line-height:110%;
  427. color:#fff;
  428. margin-left:auto;
  429. margin-right:auto;
  430. }
  431.  
  432.  
  433. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  434.  
  435. b, strong{
  436. color: #920808;
  437. font-size:14px;
  438. font-family:"Prata";
  439. letter-spacing:2px;
  440. line-height:115%;
  441. text-shadow: 0px 0px 0px #000;
  442. font-weight: bold;
  443. text-transform:uppercase;
  444. }
  445.  
  446. i, em, strong {
  447. color: #920808;
  448. font-size:14px;
  449. line-height:115%;
  450. font-family:"satisfy";
  451. letter-spacing:2px;
  452. text-shadow:0px 0px 0px #000;
  453. font-weight: italic;
  454.  
  455. }
  456.  
  457. /*time posted, note count, via and source*/
  458.  
  459. .postinfo {
  460. font-family:'Six caps';
  461. width:237px;
  462. margin-top:1px;
  463. padding:6px;
  464. font-size:15px;
  465. color:#fff;
  466. text-shadow:2px 2px 3px rgba(14,8,8, 1);
  467. background-image:url('http://i.imgur.com/IDfmVAh.png');
  468. opacity:.66;
  469. border-radius: 20px 20px 20px 20px;
  470. letter-spacing:1px;
  471. border-bottom:1px #000;
  472. text-transform:uppercase;
  473. font-style:normal;
  474. text-align:center;
  475. }
  476.  
  477. .postinfo a {
  478. color:#fff;
  479. font-style:normal;
  480. }od now
  481.  
  482. .postinfo a:hover {
  483. color:#bebebe;
  484. }
  485.  
  486.  
  487. /*tags*/
  488.  
  489. .tags {
  490. width:237px;
  491. margin-top:4px;
  492. margin-left:-1px;
  493. padding:2px;
  494. font-family:arial;
  495. letter-spacing:0px;
  496. font-size:10px;
  497. text-align:center;
  498.  
  499. }
  500.  
  501. .tags a {
  502. color:#700000;
  503. }
  504.  
  505. .tags a:hover {
  506. color:#000;
  507. }
  508.  
  509. .postnote {
  510. width:37px;
  511. margin-top:40px;
  512. font-family:arial;
  513. text-transform:lowercase;
  514. font-style:normal;
  515. letter-spacing:0px;
  516. font-size:10px;
  517. text-align:left;
  518. }
  519.  
  520. /*here go asks*/
  521.  
  522. #ask {
  523. float:left;
  524. line-height:130%;
  525. border: 1px #000;
  526. font-family:"calibri";
  527. font-size:12px;
  528.  
  529. }
  530.  
  531.  
  532.  
  533. /*audio player container*/
  534.  
  535. .playercontainer {
  536. text-align:left;
  537. padding:10px;
  538. padding-left:0px;
  539. background-color:#fff;
  540. width:480px;
  541. }
  542.  
  543. /*artist, song, etc.*/
  544.  
  545. .musicinfo {
  546. padding-top:7px;
  547. padding-left:50px;
  548. color:#000;
  549. text-align:justify;
  550. }
  551.  
  552. /*credit. only change this if you actually make the code your own*/
  553.  
  554. #credit {
  555. position:fixed;
  556. font-size:3px;
  557. color:#2f0000;
  558. font-weight:none;
  559. line-height:50%;
  560. letter-spacing:2px;
  561. right:10px;
  562. bottom:05px;
  563. text-transform:none;
  564. text-align:left;
  565. }
  566.  
  567. #credit a {
  568. letter-spacing: 0px;
  569. padding:3px;
  570. color:#848585;
  571. }
  572.  
  573. #credit a:hover {
  574. background:#000;
  575. color:#848584;
  576. }
  577.  
  578.  
  579.  
  580. {CustomCSS}</style></head><body>
  581.  
  582.  
  583. <!-- begin updates tab -->
  584.  
  585. <div id="bite">
  586. <div id="thekey">HOVER</div>
  587. <div class="death">
  588. <div id="actualnews">
  589. <para>words</para><p>
  590. more words
  591.  
  592. </div></div></div>
  593.  
  594. <!-- end updates tab -->
  595.  
  596.  
  597. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  598. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  599. <script>
  600.  
  601. (function($){
  602.  
  603. $(document).ready(function(){
  604.  
  605. $("a[title]").style_my_tooltips({
  606.  
  607. tip_follows_cursor:true,
  608.  
  609. tip_delay_time:50,
  610.  
  611. tip_fade_speed:600,
  612.  
  613. attribute:"title"
  614.  
  615. });
  616.  
  617. });
  618.  
  619. })(jQuery);
  620.  
  621. </script>
  622.  
  623.  
  624.  
  625.  
  626. <div id="links">
  627. <a href="/" title="home">✕</a>
  628.  
  629.  
  630. <a href="#?w=500" title="inquire" rel="box1" class="poplight">✕</a>
  631.  
  632. <a href="#?w=400" title="guidelines" rel="box2" class="poplight">✕</a>
  633.  
  634. <a href="#?w=400" title="about joe" rel="box3" class="poplight">✕</a>
  635.  
  636. <a href="#?w=400" title="about quentin" rel="box4" class="poplight">✕</a>
  637.  
  638. <a href="#?w=400" title="navigation" rel="box5" class="poplight">✕</a>
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645. </div>
  646.  
  647. <div id="description">{Description}</div>
  648.  
  649.  
  650. <div id="pagination">
  651. {block:Pagination}
  652. {block:PreviousPage}
  653. <a href="{PreviousPage}">&larr;</a>
  654. {/block:PreviousPage}
  655.  
  656.  
  657. {block:NextPage}
  658. <a href="{NextPage}">&rarr;</a>
  659. {/block:NextPage}
  660. {/block:Pagination}
  661. </div>
  662.  
  663.  
  664.  
  665. </div>
  666.  
  667.  
  668. <div id="container">{block:Posts}<div id="post">
  669.  
  670. {block:Text}<h1>{block:Title}<big><big><center>{Title}</center></big></big>{/block:Title}</h1>{Body}{/block:Text}
  671.  
  672. {block:Quote}<big><b><center>"{Quote}"</center></b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
  673.  
  674. {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}
  675.  
  676. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  677.  
  678. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  679.  
  680. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  681.  
  682. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  683.  
  684.  
  685. {block:AudioPlayer}
  686. <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}
  687.  
  688. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-40}" style="margin-right:12px;border:1px solid #e3e3e3;padding:3px;"></div> "{Question}"<br>
  689. — {ASKER}<br><br>
  690. {Answer}<br>{/block:Answer}
  691.  
  692. {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}
  693.  
  694. {block:HasTags}
  695. <div class="tags">
  696. {block:Tags}<a href="{TagURL}"> ○ {Tag}</a>  {/block:Tags}</div>
  697. {/block:HasTags}
  698.  
  699. <div class="postnote">
  700. {block:PostNotes}{PostNotes}{/block:PostNotes}
  701. </div>
  702. </div>
  703. {/block:Posts}
  704.  
  705.  
  706.  
  707.  
  708. </div></div></div></div>
  709. </div>
  710.  
  711. <div id="credit"><a href="#?w=400" title="credit" rel="box6" class="poplight"><font size="4">
  712. <i>Manon</i></a></font><div>
  713.  
  714. </body>
  715.  
  716. </div></div></div></div></div></div></div></div></div></div>
  717. <div id="box1" class="popup_block">
  718. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  719. </div>
  720. </div></div></div></div></div></div></div></div></div></div>
  721.  
  722. <div id="box2" class="popup_block">
  723. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  724. <center><big><big><b>GUIDELINES</b></big></big><BR>
  725. <HR WIDTH="100%"><br>
  726. CONTENT
  727. CONTENT
  728. CONTENT
  729. </center>
  730. </div>
  731. </div>
  732.  
  733. </div></div></div></div></div></div></div></div></div></div>
  734.  
  735. <div id="box3" class="popup_block">
  736. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  737. <center><big><big><b>JOE BIOGRAPHY</b></big></big><BR>
  738. <HR WIDTH="100%"><br>
  739. CONTENT
  740. CONTENT
  741. CONTENT
  742. </center>
  743. </div>
  744. </div>
  745.  
  746. </div></div></div></div></div></div></div></div></div></div>
  747.  
  748. <div id="box4" class="popup_block">
  749. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  750. <center><big><big><b>QUENTIN BIOGRAPHY</b></big></big><BR>
  751. <HR WIDTH="100%"><br>
  752. CONTENT
  753. CONTENT
  754. CONTENT
  755. </center>
  756. </div>
  757. </div>
  758.  
  759. </div></div></div></div></div></div></div></div></div></div>
  760.  
  761. <div id="box5" class="popup_block">
  762. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  763. <center><big><big><b>NAVIGATION</b></big></big><BR>
  764. <HR WIDTH="100%"><br>
  765. <a href="/LINK HERE">TITLE HERE</a>
  766. <p>
  767. <a href="/LINK HERE">TITLE HERE</a>
  768. <p><a href="/LINK HERE">TITLE HERE</a>
  769. <p><a href="/LINK HERE">TITLE HERE</a>
  770. <p><a href="/LINK HERE">TITLE HERE</a>
  771. <p><a href="/LINK HERE">TITLE HERE</a>
  772. <p>
  773.  
  774.  
  775. </center><p>
  776.  
  777.  
  778. </div>
  779. </div>
  780.  
  781. </div></div></div></div></div></div></div></div></div></div>
  782.  
  783. <div id="box6" class="popup_block">
  784. <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>
  785. </div>
  786.  
  787. </div></div></div></div></div></div></div></div></div></div>
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796.  
  797.  
  798.  
  799.  
  800. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement