alicescreed

powerbound

May 27th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.83 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head>
  6. <title>{Title}</title>
  7.  
  8.  
  9. <!-- please do not steal, redistribute, or claim as your own. KEEP CREDIT IN TACT. thank you! -->
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />
  13.  
  14. {/block:Description}
  15.  
  16.  
  17. <meta name="color:text" content="#e2e2e2">
  18. <meta name="color:scrollbar" content="#a49b9c">
  19. <meta name="color:bold" content="#8262ae">
  20. <meta name="color:italic" content="#8262ae">
  21. <meta name="color:links" content="#8262ae">
  22. <meta name="color:borders" content="#a49b9c">
  23. <meta name="color:hover link" content="#ffffff">
  24.  
  25. <link href="https://fonts.googleapis.com/css2?family=Dancing+Script&family=Source+Serif+Pro&display=swap" rel="stylesheet">
  26. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  27. <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  28. <script>
  29. (function($){
  30. $(document).ready(function(){
  31. $("[title]").style_my_tooltips({
  32. tip_follows_cursor:true,
  33. tip_delay_time:200,
  34. tip_fade_speed:300
  35. }
  36. );
  37. });
  38. })(jQuery);
  39. </script>
  40.  
  41. <script type="text/javascript"
  42. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  43. <script>
  44. $(document).ready(function() {
  45. //
  46. $('a.poplight[href^=#]').click(function() {
  47. var popID = $(this).attr('rel'); //Get Popup Name
  48. var popURL = $(this).attr('href'); //Get Popup href to define size
  49. var query= popURL.split('?');
  50. var dim= query[1].split('&');
  51. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  52. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  53. var popMargTop = ($('#' + popID).height() + 80) / 2;
  54. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  55. //Apply Margin to Popup
  56. $('#' + popID).css({
  57. 'margin-top' : -popMargTop,
  58. 'margin-left' : -popMargLeft
  59. });
  60. $('body').append('<div id="fade"></div>');
  61. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  62. return false;
  63. });
  64. $('a.close, #fade').live('click', function() {
  65. $('#fade , .popup_block').fadeOut(function() {
  66. $('#fade, a.close').remove(); //fade them both out
  67. });
  68. return false;
  69. });
  70. });
  71. </script>
  72.  
  73.  
  74. <style type="text/css">
  75.  
  76.  
  77. body {
  78. font-family: 'Source Serif Pro', serif;
  79. color: {color:text};
  80. font-size: 8pt;
  81. letter-spacing: 0px;
  82. background-color: #0c0c0c;
  83. background-image: url('https://i.imgur.com/X3WhvWP.png');
  84. background-position: top-right;
  85. background-repeat: no-repeat;
  86. background-attachment: fixed;
  87. line-height: 14pt;
  88. text-align: justify;
  89. }
  90.  
  91. #s-m-t-tooltip{
  92. position: absolute;
  93. z-index: 999999999999999999999999999999999999999999999999999999999999;
  94. margin-top: 10px;
  95. margin-left: 5px;
  96. display: block;
  97. border-radius: 0px;
  98. background-image: url('https://i.imgur.com/cC86hqV.png');
  99. background-position: center;
  100. text-align: center;
  101. font-style: italic;
  102. box-shadow: 2px 2px 5px #000;
  103. font-family: 'Dancing Script', cursive;
  104. letter-spacing: 1px;
  105. text-shadow: 1px 1px 5px #000;
  106. border: 1px dashed {color:borders};
  107. padding: 10px;
  108. font-size: 20pt;
  109. margin-bottom: 5px;
  110. }
  111.  
  112. ::-webkit-scrollbar-thumb:vertical {
  113. background-color: {color:scrollbar};
  114. height:auto;
  115. }
  116.  
  117. ::-webkit-scrollbar-thumb:horizontal {
  118. background-color: {color:scrollbar};
  119. height:2px;
  120. }
  121.  
  122. ::-webkit-scrollbar {
  123. height:3px;
  124. width:3px;
  125. background-color: transparent;
  126. }
  127.  
  128.  
  129. a {
  130. text-decoration: none;
  131. color: {color:links};
  132. font-size: 12pt;
  133. line-height: 16pt;
  134. font-weight: bold;
  135. transition-duration: 0.6s;
  136. -moz-transition-duration: 0.6s;
  137. -webkit-transition-duration: 0.6s;
  138. -o-transition-duration: 0.6s;
  139. font-family: 'Dancing Script', cursive;
  140. letter-spacing: 1px;
  141. text-shadow: 1px 1px 5px #000;
  142. }
  143.  
  144.  
  145. a:hover {
  146. text-decoration: none;
  147. filter:blur(1px);
  148. letter-spacing: 1px;
  149. color: {color:hover link};
  150. transition-duration: 0.6s;
  151. -moz-transition-duration: 0.6s;
  152. -webkit-transition-duration: 0.6s;
  153. -o-transition-duration: 0.6s;
  154. }
  155.  
  156. small, sup, sub {
  157. font-size: 100%;
  158. }
  159.  
  160. b, strong {
  161. text-shadow: 1px 1px 5px #000;
  162. padding-left: 2px;
  163. padding-right: 2px;
  164. color:{color:bold};
  165. letter-spacing: 0px;
  166. font-size: 18pt;
  167. font-family: 'Dancing Script', cursive;
  168. }
  169.  
  170. i, em {
  171. text-shadow: 1px 1px 5px #000;
  172. color:{color:italic};
  173. font-family: 'Dancing Script', cursive;
  174. letter-spacing: 1px;
  175. padding-left:5px;
  176. padding-right: 5px;
  177. padding-top: 10px;
  178. padding-bottom: 10px;
  179. font-size: 16pt;
  180. }
  181.  
  182.  
  183.  
  184.  
  185. h2 {
  186. text-shadow: 1px 1px 5px #000;
  187. color: #fff;
  188. font-family: 'Dancing Script', cursive;
  189. font-size: 16pt;
  190. font-weight: bold;
  191. line-height: 120%;
  192. letter-spacing: 1px;
  193. }
  194.  
  195.  
  196. #info {
  197. padding: 10px;
  198.  
  199. margin-top: 10px;
  200. background-image: url('https://i.imgur.com/cC86hqV.png');
  201. background-attachment:fixed;
  202. background-repeat: y-repeat;
  203. background-position: left;
  204. text-align: center;
  205. color: #fff;
  206. letter-spacing: 1px;
  207. text-shadow: 1px 1px #000;
  208. transition-duration: 0.6s;
  209. -moz-transition-duration: 0.6s;
  210. -webkit-transition-duration: 0.6s;
  211. -o-transition-duration: 0.6s;
  212. font-size:14pt;
  213. border: 1px dashed {color:borders};
  214. }
  215.  
  216. #info a {
  217. font-size: 20pt;
  218. text-shadow: 1px 1px 4px #000;
  219. font-weight:bold;
  220. color: {color:italic};
  221. font-family: 'Dancing Script', cursive;
  222. }
  223.  
  224. #h1 {
  225. text-align: center;
  226. color: #fff;
  227. font-family: 'Source Serif Pro', serif;
  228. padding: 10px;
  229. text-shadow: 2px 2px 2px #000;
  230. line-height: 110%;
  231. font-size: 18pt;
  232. background-position: center;
  233. margin-bottom: 5px;
  234. }
  235.  
  236. #sidebar {
  237. margin-left:525px;
  238. width: 110px;
  239. font-size: 7pt;
  240. margin-top:360px;
  241. position: fixed;
  242. background-color: transparent;
  243. }
  244.  
  245. #description {
  246. height:155px;
  247. padding-right: 4px;
  248. overflow: auto;
  249. }
  250.  
  251. #audio {
  252. text-align: center;
  253. font-size: 8pt;
  254. line-height: 9pt;
  255. }
  256.  
  257.  
  258. #musicinfo {
  259.  
  260. text-transform: uppercase;
  261. margin-top:10px;
  262. }
  263.  
  264. blockquote {
  265. border: 1px dashed {color:borders};
  266. background-color: #141414;
  267. padding: 5px;
  268. font-size: 95%
  269. }
  270.  
  271. blockquote img {
  272. max-width: 100%;
  273. display: block;
  274. height: auto
  275. }
  276.  
  277. img {
  278. max-width: 100%;
  279. display: block;
  280. height: auto
  281. }
  282.  
  283.  
  284. ol.notes {
  285. text-align: left;
  286. list-style: upper-roman;
  287. padding: 10px;
  288.  
  289. }
  290.  
  291.  
  292. #info a:hover {
  293. color: {color:bold};
  294. }
  295.  
  296. #credit {
  297. right:10px;
  298. bottom:7px;
  299. padding:5px;
  300. font-size:10px;
  301. position:fixed;
  302. background-image: url('https://i.imgur.com/cC86hqV.png');
  303. text-align: center;
  304. font-style: italic;
  305. font-family: 'Source Serif Pro', serif;
  306. letter-spacing: 1px;
  307. border: 1px {color:borders};
  308. border-style: solid;
  309. padding: 5px;
  310. font-size: 120%;
  311. margin-bottom: 5px;
  312. transition-duration: 0.6s;
  313. -moz-transition-duration: 0.6s;
  314. -webkit-transition-duration: 0.6s;
  315. -o-transition-duration: 0.6s;
  316. }
  317.  
  318.  
  319. #credit a {
  320. font-family: 'Source Serif Pro', serif;
  321. color:#fff;
  322. padding:5px;
  323. letter-spacing:1px;
  324. text-decoration:none;
  325. font-weight:bold;
  326. }
  327.  
  328. #tags a {
  329. font-family: verdana;
  330. font-weight: bold;
  331. font-size: 8px;
  332. line-height: 6px;
  333. color: #fff;
  334. text-transform: uppercase;
  335. text-shadow: 1px 1px 1px #000;
  336. }
  337.  
  338. #post {
  339. width: 400px;
  340. margin-bottom: 25px;
  341. }
  342.  
  343. #posts {
  344. width: 400px;
  345. padding: 20px;
  346. overflow: auto;
  347. height: 500px;
  348. position: absolute;
  349. margin-left:35px;
  350. margin-top: 40px;
  351. }
  352.  
  353. #ask {
  354. border: 20px solid #141414;
  355. outline: 1px dashed {color:borders};
  356. text-align: center;
  357. padding: 10px;
  358. height: auto;
  359. background-image: url('https://i.imgur.com/cC86hqV.png');
  360. }
  361.  
  362. #pa { margin-top: 10px;
  363. width: auto;
  364. text-align: center;
  365. }
  366.  
  367. #pa a {
  368. text-shadow: 1px 1px 5px #000;
  369. color: #fff;
  370. font-family: verdana;
  371. font-weight: bold;
  372. text-transform: uppercase;
  373. font-size: 10pt;
  374. }
  375.  
  376.  
  377. #links {
  378. position: fixed;
  379. text-align: left;
  380. margin-left: 650px;
  381. margin-top: 350px;
  382. }
  383.  
  384. #links a {
  385. font-family: 'Dancing Script', cursive;
  386. font-weight: bold;
  387. transition-duration: 0.6s;
  388. -moz-transition-duration: 0.6s;
  389. -webkit-transition-duration: 0.6s;
  390. -o-transition-duration: 0.6s;
  391. font-size: 24px;
  392. background: -webkit-linear-gradient({color:bold}, {color:italic});
  393. -webkit-background-clip: text;
  394. -webkit-text-fill-color: #fff;
  395. opacity: 1;
  396. line-height: 26px;
  397. }
  398.  
  399. #fade {
  400. display: none;
  401. background: #000;
  402. background-repeat: no-repeat;
  403. background-position: top left;
  404. position: fixed;
  405. left: 0;
  406. top: 0;
  407. width: 100%;
  408. height: 100%;
  409. opacity: .5;
  410. z-index: 9999;
  411. }
  412.  
  413. .popup_block{
  414. display: none;
  415. padding: 20px;
  416. position: fixed;
  417. top: 50%;
  418. left: 50%;
  419. z-index: 99999;
  420. background-color: #0c0c0c;
  421. border: 20px solid transparent;
  422. border-image:url('https://i.imgur.com/cC86hqV.png') 50 round;
  423. outline: 1px dashed {color:borders};
  424. box-shadow: 2px 2px 5px #000;
  425. }
  426.  
  427. img.btn_close {
  428. float: right;
  429. margin: -55px -55px 0 0;
  430. }
  431.  
  432. *html #fade {
  433. position: absolute;
  434. }
  435.  
  436. *html .popup_block {
  437. position: absolute;
  438. }
  439.  
  440.  
  441. #poplinks {
  442.  
  443. color: #fff;
  444. background-position: left;
  445. text-shadow: 1px 1px 3px #000;
  446. background-image: url('https://i.imgur.com/cC86hqV.png');
  447. background-attachment:fixed;
  448. background-repeat:repeat;
  449. text-align: center;
  450. font-family: verdana;
  451. border: 1px dashed {color:borders};
  452. padding: 2px;
  453. font-size: 8pt;
  454. font-weight: bold;
  455. text-transform: uppercase;
  456. margin-bottom: 5px;
  457. margin-top: 5px;
  458.  
  459. }
  460.  
  461. #poplinks a {
  462. text-align: center;
  463. font-family: verdana;
  464. font-size: 8pt;
  465. font-weight: bold;
  466. text-transform: uppercase;
  467. text-shadow: 1px 1px 3px #000;
  468. color: #fff;
  469. }
  470.  
  471. #poph1 {
  472.  
  473. color: #fff;
  474. background-position: center;
  475. text-shadow: 1px 1px 3px #000;
  476. background-image: url('https://i.imgur.com/cC86hqV.png');
  477. background-attachment:fixed;
  478. background-repeat:repeat;
  479. text-align: center;
  480. font-family: verdana;
  481. border: 1px dashed {color:borders};
  482. padding: 5px;
  483. font-size: 8pt;
  484. font-weight: bold;
  485. text-transform: uppercase;
  486. margin-bottom: 5px;
  487. margin-top: 10px;
  488. }
  489.  
  490. #ask a {
  491. font-size: 16pt;
  492. text-shadow: 2px 2px 5px #000;
  493. }
  494.  
  495. #desctitle {
  496. padding: 4px;
  497. font-family: verdana;
  498. text-transform: uppercase;
  499. font-size: 8px;
  500. margin-bottom: 3px;
  501. text-shadow: 1px 1px 3px #000;
  502. color: #fff;
  503. font-weight: bold;
  504. border: 1px dashed {color:borders};
  505. text-align: center;
  506. background-position: center;
  507. background-image: url('https://i.imgur.com/cC86hqV.png');
  508. }
  509.  
  510. #left {
  511. float: left;
  512. margin-right: 10px;
  513. }
  514.  
  515. </style>
  516.  
  517. </head>
  518.  
  519. <body>
  520.  
  521. <div id="links">
  522. <a href="/" title="return">I.</a><br>
  523. <a href="#?w=500" rel="askme" class="poplight" title="message">II.</a><br>
  524. <a href="#?w=500" rel="pop1" class="poplight" title="rules">III.</a><br>
  525. <a href="#?w=500" rel="pop2" class="poplight" title="stats">IV.</a><br>
  526. <a href="#?w=500" rel="pop3" class="poplight" title="about">V.</a><br>
  527. <a href="#?w=500" rel="pop4" class="poplight" title="verses">VI.</a><br>
  528. <a href="#?w=500" rel="pop5" class="poplight" title="subverses">VII.</a><br>
  529. <a href="#?w=500" rel="pop6" class="poplight" title="navi">VIII.</a><br>
  530. </div>
  531.  
  532. <div id="sidebar">
  533. <div id="desctitle">{title}</div>
  534. <div id="description">
  535. {Description}
  536. </div>
  537. <div id="pa">{block:Pagination}
  538. {block:PreviousPage}
  539. <a href="{PreviousPage}">fall</a> /
  540. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  541. {/block:NextPage}
  542. {/block:Pagination}</div>
  543. </div>
  544.  
  545. <div id="posts">
  546.  
  547.  
  548. {block:Posts}<div id="post">
  549.  
  550.  
  551.  
  552. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  553.  
  554. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  555.  
  556. {Caption} {/block:Caption}{/block:Photo}
  557.  
  558. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  559.  
  560. {/block:Photoset}
  561.  
  562. {block:Quote}<b style="text-align: center; font-size: 24pt; line-height: 20pt;">{Quote}</b>{block:Source}<div style="text-align:center;">—{Source}</div>{/block:Source}{/block:Quote}
  563.  
  564. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  565.  
  566. {Description}{/block:Description}{/block:Link}
  567.  
  568. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  569.  
  570. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  571.  
  572. {block:Audio}
  573. <div id="audio">
  574. {block:TrackName}
  575. <div id="musicinfo" style="margin-top: 5px;">
  576. {AudioPlayerGrey} <br>
  577. {TrackName} by
  578. {/block:TrackName}
  579. {block:Artist}
  580. {Artist}
  581. {/block:Artist}
  582.  
  583. </div>
  584. </div>
  585. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  586. {/block:Audio}
  587.  
  588.  
  589. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  590.  
  591. {block:Answer}
  592. <div id="ask">
  593. <center>
  594. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; border:1px dashed {color:borders}; box-shadow: 3px 3px 5px #000; margin-bottom: 4px;"></center>
  595. {Asker} asked,<br>
  596. {Question}
  597. </div>
  598. {Answer}{/block:Answer}
  599.  
  600. <div id="info">
  601. <a title="{TimeAgo}" title="{TimeAgo}">{timeago}</a>. <a href="{Permalink}" title="{NoteCount} notes">{notecount}</a>. <a href="{ReblogURL}" title="reblog">reblog</a>.
  602. <div id="tags">
  603. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  604. {/block:Tags}{/block:HasTags}
  605. </div>
  606. </div>
  607.  
  608.  
  609. </div>
  610. {block:PostNotes}<Div style="width: 400px;">
  611.  
  612.  
  613. {PostNotes}</div>{/block:PostNotes}
  614. {/block:Posts}</div>
  615.  
  616.  
  617. <div id="credit">
  618. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  619. </div>
  620.  
  621. <div id="askme" class="popup_block">
  622. <div id="poph1">ask</div>
  623. <iframe frameborder="0"
  624. height="190"
  625. id="ask_form"
  626. scrolling="no"
  627. src="https://www.tumblr.com/ask_form/powerbound.tumblr.com"
  628. width="400">
  629. </iframe>
  630. </div>
  631.  
  632. <div id="pop1" class="popup_block">
  633.  
  634. <div id="left"><img src="https://i.imgur.com/TPWvh7N.png" stats="rules"></div>
  635.  
  636. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  637. <div id="poph1">cupcake ipsum</div>
  638. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  639.  
  640. <div id="poph1">cupcake ipsum</div>
  641. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  642.  
  643. <div id="poph1">cupcake ipsum</div>
  644. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  645. <!--insert pop-up content html here for pop1
  646.  
  647. <div id="poph1">poph1</div> is the code for the special mini headers!!
  648. -->
  649. </div>
  650. </div>
  651.  
  652. <div id="pop2" class="popup_block">
  653.  
  654. <div id="left"><img src="https://i.imgur.com/rBeVuh2.png" title="stats"></div>
  655.  
  656. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  657.  
  658. <!--insert pop-up content html here for pop2
  659.  
  660. <div id="poph1">poph1</div> is the code for the special mini headers!!
  661. -->
  662.  
  663. <div id="poph1">cupcake ipsum</div>
  664. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  665.  
  666. <div id="poph1">cupcake ipsum</div>
  667. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  668.  
  669. <div id="poph1">cupcake ipsum</div>
  670. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  671.  
  672. </div>
  673. </div>
  674.  
  675. <div id="pop3" class="popup_block">
  676.  
  677.  
  678. <div id="left"><img src="https://i.imgur.com/zEbW0oS.png" title="about"></div>
  679.  
  680. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  681. <!--insert pop-up content html here for pop3
  682.  
  683. <div id="poph1">poph1</div> is the code for the special mini headers!!
  684. -->
  685.  
  686. <div id="poph1">cupcake ipsum</div>
  687. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  688.  
  689. <div id="poph1">cupcake ipsum</div>
  690. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  691.  
  692. <div id="poph1">cupcake ipsum</div>
  693. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  694.  
  695. </div>
  696. </div>
  697.  
  698. <div id="pop4" class="popup_block">
  699.  
  700. <div id="left"><img src="https://i.imgur.com/MedKpEe.png" title="verses"></div>
  701.  
  702. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  703. <!-- <div id="poph1">cupcake ipsum</div>
  704. <div style="height: 150px; overflow: auto; padding-right: 10px;">
  705. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  706. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  707. </div>
  708.  
  709. -->
  710.  
  711. <div id="poph1">cupcake ipsum</div>
  712. <div style="height: 150px; overflow: auto; padding-right: 10px;">
  713. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  714. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  715. </div>
  716.  
  717. <div id="poph1">cupcake ipsum</div>
  718. <div style="height: 150px; overflow: auto; padding-right: 10px;">
  719. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  720. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  721. </div>
  722.  
  723.  
  724. <div id="poph1">cupcake ipsum</div>
  725. <div style="height: 150px; overflow: auto; padding-right: 10px;">
  726. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  727. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  728. </div>
  729.  
  730.  
  731.  
  732.  
  733. </div>
  734. </div>
  735.  
  736. <div id="pop5" class="popup_block">
  737.  
  738. <div id="left"><img src="https://i.imgur.com/aiLWXoU.png" title="subverses"></div>
  739.  
  740. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  741. <div id="poph1">cupcake ipsum</div>
  742. <div style="height: 150px; overflow: auto; padding-right: 10px;">
  743. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  744. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  745. </div>
  746.  
  747. <div id="poph1">cupcake ipsum</div>
  748. <div style="height: 150px; overflow: auto; padding-right: 10px;">
  749. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  750. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  751. </div>
  752.  
  753.  
  754. <div id="poph1">cupcake ipsum</div>
  755. <div style="height: 150px; overflow: auto; padding-right: 10px;">
  756. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  757. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  758. </div>
  759.  
  760. </div>
  761. </div>
  762.  
  763. <div id="pop6" class="popup_block">
  764.  
  765. <div id="left"><img src="https://i.imgur.com/xWKmw0A.png" title="navi"></div>
  766.  
  767. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  768. <!--insert pop-up content html here for pop3
  769.  
  770. <div id="poph1">poph1</div> is the code for the special mini headers!!
  771. -->
  772. <div id="poplinks"><A href="/">title</A></div>
  773. <div id="poplinks"><A href="/">title</A></div>
  774. <div id="poplinks"><A href="/">title</A></div>
  775. <div id="poplinks"><A href="/">title</A></div>
  776. <div id="poplinks"><A href="/">title</A></div>
  777. <div id="poplinks"><A href="/">title</A></div>
  778. <div id="poplinks"><A href="/">title</A></div>
  779. <div id="poplinks"><A href="/">title</A></div>
  780. <div id="poplinks"><A href="/">title</A></div>
  781. <div id="poplinks"><A href="/">title</A></div>
  782. <div id="poplinks"><A href="/">title</A></div>
  783. <div id="poplinks"><A href="/">title</A></div>
  784. </div>
  785. </div>
  786.  
  787.  
  788. </body>
  789.  
  790.  
  791.  
  792. </html>
Advertisement
Add Comment
Please, Sign In to add comment