Advertisement
alicescreed

forecastsacataclysm

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