alicescreed

sonofhxxk

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