Advertisement
manon15

killxrclown code

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