alicescreed

theworldio

Jun 7th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.50 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="#dcdcdc">
  17. <meta name="color:bold" content="#b60f0f">
  18. <meta name="color:italic" content="#b85448">
  19. <meta name="color:links" content="#ffffff">
  20. <meta name="color:borders" content="#707070">
  21. <meta name="color:hover link" content="#b60f0f">
  22.  
  23. <meta name="text:pop1 title" content="title">
  24. <meta name="text:pop2 title" content="title">
  25. <meta name="text:pop3 title" content="title">
  26. <meta name="text:pop4 title" content="title">
  27. <meta name="text:pop5 title" content="title">
  28.  
  29.  
  30.  
  31. <link href="https://fonts.googleapis.com/css2?family=EB+Garamond&family=Noto+Sans+KR&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: 'Noto Sans KR', sans-serif;
  86. color: {color:text};
  87. font-size: 8pt;
  88. letter-spacing: .5px;
  89. background-color:#f6ebbf;
  90. background-image: url('https://i.imgur.com/c6S8A3M.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. color: #fff;
  104. display: block;
  105. background-image: url('https://i.imgur.com/bJ0kVik.png');
  106. background-position: center;
  107. text-align: center;
  108. font-style: italic;
  109. box-shadow: 2px 2px 5px #000;
  110. font-family: 'EB Garamond', serif;
  111. letter-spacing: 1px;
  112. text-shadow: 1px 1px 1px red;
  113. border: 4px double {color:borders};
  114. padding: 10px;
  115. font-size: 22pt;
  116. margin-bottom: 5px;
  117. }
  118.  
  119. ::-webkit-scrollbar-thumb:vertical {
  120. background-color: transparent;
  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: 16pt;
  141. font-weight: bold;
  142. transition-duration: 0.6s;
  143. -moz-transition-duration: 0.6s;
  144. -webkit-transition-duration: 0.6s;
  145. -o-transition-duration: 0.6s;
  146. font-family: 'EB Garamond', serif;
  147. letter-spacing: 1px;
  148. text-shadow: 2px 2px 4px #000;
  149. }
  150.  
  151.  
  152. a:hover {
  153. text-decoration: none;
  154. filter:blur(2px);
  155. letter-spacing: 1px;
  156. color: {color:hover link};
  157. transition-duration: 0.6s;
  158. -moz-transition-duration: 0.6s;
  159. -webkit-transition-duration: 0.6s;
  160. -o-transition-duration: 0.6s;
  161. }
  162.  
  163. small, sup, sub {
  164. font-size: 100%;
  165. }
  166.  
  167. b, strong {
  168. text-shadow: 2px 2px 4px #000;
  169. padding-left: 2px;
  170. padding-right: 2px;
  171. color:{color:bold};
  172. letter-spacing: 0px;
  173. font-size: 14pt;
  174. font-family: 'EB Garamond', serif;
  175. }
  176.  
  177. i, em {
  178. text-shadow: 2px 2px 4px #000;
  179. color:{color:italic};
  180. font-family: 'EB Garamond', serif;
  181. letter-spacing: 1px;
  182. padding-left:5px;
  183. padding-right: 5px;
  184. padding-top: 10px;
  185. padding-bottom: 10px;
  186. font-weight: bold;
  187. font-size: 14pt;
  188. }
  189.  
  190.  
  191.  
  192.  
  193. h2 {
  194. text-shadow: 2px 2px 4px #000;
  195. font-family: 'Noto Sans KR', sans-serif;
  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/bJ0kVik.png');
  207. text-align: center;
  208. background-attachment:fixed;
  209. background-position: top right;
  210. background-repeat:repeat;
  211. color: #fff;
  212. letter-spacing: 1px;
  213. border-radius: 40px;
  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 double {color:borders};
  221. }
  222.  
  223. #info a {
  224. font-size: 14pt;
  225. text-shadow: 2px 2px 4px #000;
  226. font-weight:bold;
  227. color: #fff;
  228. }
  229.  
  230. #h1 {
  231. text-align: center;
  232. font-family: 'Noto Sans KR', sans-serif;
  233. padding: 10px;
  234. text-shadow: 2px 2px 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:1040px;
  243. width: 120px;
  244. font-size: 10pt;
  245. margin-top: 314px;
  246. position: fixed;
  247. background-color: transparent;
  248. }
  249.  
  250. #description {
  251. height:190px;
  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. outline: 4px double {color:borders};
  273. background-color: #171717;
  274. padding: 5px;
  275. font-size: 95%
  276. }
  277.  
  278. blockquote img {
  279. max-width: 100%;
  280. display: block;
  281. height: auto
  282. }
  283.  
  284. img {
  285. max-width: 100%;
  286. display: block;
  287. height: auto
  288. }
  289.  
  290.  
  291. ol.notes {
  292. text-align: left;
  293. list-style: upper-roman;
  294. padding: 10px;
  295.  
  296. }
  297.  
  298.  
  299. #info a:hover {
  300. color: {color:bold};
  301. }
  302.  
  303. #credit {
  304. right:10px;
  305. bottom:7px;
  306. padding:5px;
  307. font-size:10px;
  308. position:fixed;
  309. background-image: url('https://i.imgur.com/bJ0kVik.png');
  310. text-align: center;
  311. font-style: italic;
  312. font-family: 'Noto Sans KR', sans-serif;
  313. letter-spacing: 1px;
  314. border: 1px {color:borders};
  315. border-style: dashed;
  316. padding: 5px;
  317. font-size: 120%;
  318. margin-bottom: 5px;
  319. transition-duration: 0.6s;
  320. -moz-transition-duration: 0.6s;
  321. -webkit-transition-duration: 0.6s;
  322. -o-transition-duration: 0.6s;
  323. }
  324.  
  325.  
  326. #credit a {
  327. font-family: 'Noto Sans KR', sans-serif;
  328. color:#fff;
  329. padding:5px;
  330. letter-spacing:1px;
  331. text-decoration:none;
  332. font-weight:bold;
  333. }
  334.  
  335. #tags a {
  336. font-family: verdana;
  337. font-weight: bold;
  338. font-size: 8px;
  339. line-height: 6px;
  340. color: #fff;
  341. text-transform: uppercase;
  342. text-shadow: 1px 1px 1px #000;
  343. }
  344.  
  345. #post {
  346. width: 400px;
  347. margin-bottom: 25px;
  348. }
  349.  
  350. #posts {
  351. width: 400px;
  352. padding: 15px;
  353. height: 510px;
  354. overflow: auto;
  355. margin-top: 20px;
  356. position: absolute;
  357. margin-left:575px;
  358. }
  359.  
  360. #ask a {
  361. text-shadow: 2px 2px 4px #000;
  362. font-size:20pt;
  363. color: #fff;
  364. }
  365.  
  366. #ask {
  367. background-image: url('https://i.imgur.com/bJ0kVik.png');
  368. text-align: center;
  369. color: #fff;
  370. padding: 10px;
  371. height: auto;
  372. border: 4px double {color:borders};
  373. background-color: #040404;
  374. text-shadow: 1px 1px 2px #000;
  375. }
  376.  
  377. #pa { margin-top: 15px;
  378. text-align: center;
  379. }
  380.  
  381. #pa a {
  382. color: #fff;
  383. text-shadow: 1px 1px 1px {color:bold};
  384. font-family: 'Noto Sans KR', sans-serif;
  385. text-transform: uppercase;
  386. font-size: 11pt;
  387. }
  388.  
  389. #links {
  390. transform: rotate(-06deg);
  391. position: fixed;
  392. margin-top: 480px;
  393. margin-left: 240px;
  394. }
  395.  
  396. #links a {
  397. transition-duration: 1s;
  398. -moz-transition-duration: 1s;
  399. -webkit-transition-duration:1s;
  400. -o-transition-duration: 1s;
  401. font-weight: bold;
  402. font-size: 14pt;
  403. color: #fff;
  404. text-shadow: 2px 2px 4px #000;
  405. line-height: 16pt;
  406. font-family: 'Noto Sans KR', sans-serif;
  407. }
  408.  
  409. #desctitle {
  410. padding: 4px;
  411. font-family: verdana;
  412. text-transform: uppercase;
  413. font-size: 8px;
  414. text-shadow: 1px 1px 3px #000;
  415. color: #fff;
  416. font-weight: bold;
  417. border: 4px double {color:borders};
  418. text-align: center;
  419. background-position: center;
  420. background-image: url('https://i.imgur.com/bJ0kVik.png');
  421. }
  422.  
  423. #fade {
  424. display: none;
  425. background-image: url('https://i.imgur.com/xoHEUCl.png');
  426. background-position: top left;
  427. background-repeat: no-repeat;
  428. background-attachment: fixed;
  429. background-color: #0f0f0f;
  430. position: fixed;
  431. left: 0;
  432. top: 0;
  433. width: 100%;
  434. height: 100%;
  435. opacity: 1;
  436. z-index: 9999;
  437. }
  438.  
  439. .popup_block{
  440. display: none;
  441. padding: 20px;
  442. position: fixed;
  443. top: 60%;
  444. left: 60%;
  445. background-color: #0f0f0f;
  446. z-index: 99999;
  447. outline: 3px solid {color:borders};
  448. box-shadow: 2px 2px 5px gray;
  449. }
  450.  
  451. img.btn_close {
  452. float: right;
  453. margin: -55px -55px 0 0;
  454. }
  455.  
  456. *html #fade {
  457. position: absolute;
  458. }
  459.  
  460. *html .popup_block {
  461. position: absolute;
  462. }
  463.  
  464.  
  465. #poplinks {
  466. border-radius: 40px;
  467. color: #fff;
  468. background-position: left;
  469. text-shadow: 1px 1px 3px #000;
  470. background-image: url('https://i.imgur.com/bJ0kVik.png');
  471. background-attachment:fixed;
  472. background-position: top right;
  473. background-repeat:repeat;
  474. text-align: center;
  475. font-family: verdana;
  476. border: 4px double {color:borders};
  477. padding: 2px;
  478. font-size: 8pt;
  479. font-weight: bold;
  480. text-transform: uppercase;
  481. margin-bottom: 5px;
  482. margin-top: 5px;
  483.  
  484. }
  485.  
  486. #poplinks a {
  487. text-align: center;
  488. font-family: verdana;
  489. font-size: 8pt;
  490. font-weight: bold;
  491. text-transform: uppercase;
  492. text-shadow: 1px 1px 3px #000;
  493. color: #fff;
  494. }
  495.  
  496. #poph1 {
  497. border-radius: 40px;
  498. color: #fff;
  499. background-position: center;
  500. text-shadow: 1px 1px 3px #000;
  501. background-image: url('https://i.imgur.com/bJ0kVik.png');
  502. background-attachment:fixed;
  503. background-repeat:repeat;
  504. text-align: center;
  505. font-family: verdana;
  506. border: 4px double {color:borders};
  507. padding: 5px;
  508. font-size: 8pt;
  509. font-weight: bold;
  510. text-transform: uppercase;
  511. margin-bottom: 10px;
  512. }
  513.  
  514. h1 {
  515. font-family: 'Noto Sans KR', sans-serif;
  516. font-size: 16pt;
  517. color: {color:bold};
  518. }
  519.  
  520. h3 {
  521. font-family: 'Noto Sans KR', sans-serif;
  522. font-size: 16pt;
  523. color: {color:italic};
  524. }
  525.  
  526. @keyframes bounce {
  527. 0% { transform: translateY(0); }
  528. 100% { transform: translateY(-10px); }
  529. }
  530.  
  531. </style>
  532.  
  533. </head>
  534.  
  535. <body>
  536.  
  537. <div id="links">
  538. <a href="/" title="return"> ♕ </a>
  539. <a href="#?w=600" rel="askme" class="poplight" title="message">♕ </a>
  540. <a href="#?w=600" rel="pop1" class="poplight" title="{text:pop1 title}">♕ </a>
  541. <a href="#?w=600" rel="pop2" class="poplight" title="{text:pop2 title}">♕ </a>
  542. <a href="#?w=600" rel="pop3" class="poplight" title="{text:pop3 title}">♕ </a>
  543. <a href="#?w=600" rel="pop4" class="poplight" title="{text:pop4 title}">♕ </a>
  544. <a href="#?w=600" rel="pop5" class="poplight" title="{text:pop5 title}">♕ </a>
  545. </div>
  546.  
  547.  
  548. <div id="sidebar">
  549. <div id="description">
  550. {Description}
  551. </div>
  552. <div id="pa">{block:Pagination}
  553. {block:PreviousPage}
  554. <a href="{PreviousPage}">fall</a> /
  555. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  556. {/block:NextPage}
  557. {/block:Pagination}</div>
  558. </div>
  559.  
  560. <div id="posts">
  561.  
  562.  
  563. {block:Posts}<div id="post">
  564.  
  565.  
  566.  
  567. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  568.  
  569. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  570.  
  571. {Caption} {/block:Caption}{/block:Photo}
  572.  
  573. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  574.  
  575. {/block:Photoset}
  576.  
  577. {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}
  578.  
  579. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  580.  
  581. {Description}{/block:Description}{/block:Link}
  582.  
  583. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  584.  
  585. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  586.  
  587. {block:Audio}
  588. <div id="audio">
  589. {block:TrackName}
  590. <div id="musicinfo" style="margin-top: 5px;">
  591. {AudioPlayerGrey} <br>
  592. {TrackName} by
  593. {/block:TrackName}
  594. {block:Artist}
  595. {Artist}
  596. {/block:Artist}
  597.  
  598. </div>
  599. </div>
  600. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  601. {/block:Audio}
  602.  
  603.  
  604. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  605.  
  606. {block:Answer}
  607. <div id="ask">
  608. <center>
  609. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; box-shadow: 3px 3px 5px #000; margin-bottom: 6px;"></center>
  610. {Asker} asked,<br>
  611. {Question}
  612. </div>
  613. {Answer}{/block:Answer}
  614.  
  615. <div id="info">
  616. <a title="{TimeAgo}" title="{TimeAgo}">{timeago}</a>. <a href="{Permalink}" title="{NoteCount} notes">{notecount}</a>. <a href="{ReblogURL}" title="reblog">reblog</a>.
  617. <div id="tags">
  618. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  619. {/block:Tags}{/block:HasTags}
  620. </div>
  621. </div>
  622.  
  623.  
  624. </div>
  625. {block:PostNotes}<Div style="width: 400px;">
  626.  
  627.  
  628. {PostNotes}</div>{/block:PostNotes}
  629. {/block:Posts}</div>
  630.  
  631.  
  632. <div id="credit">
  633. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  634. </div>
  635.  
  636.  
  637. <div id="askme" class="popup_block">
  638. <div id="poph1">ask</div>
  639. <iframe frameborder="0"
  640. height="190"
  641. id="ask_form"
  642. scrolling="no"
  643. src="https://www.tumblr.com/ask_form/theworldio.tumblr.com"
  644. width="600">
  645. </iframe>
  646. </div>
  647.  
  648. <div id="pop1" class="popup_block">
  649.  
  650.  
  651. <div style="height: 320px; overflow: auto; padding-right: 10px;">
  652.  
  653. <div id="poph1">cupcake ipsum</div>
  654.  
  655. 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.
  656.  
  657. <div id="poph1">cupcake ipsum</div>
  658.  
  659. 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.
  660.  
  661.  
  662. </div>
  663. </div>
  664.  
  665. <div id="pop2" class="popup_block">
  666.  
  667.  
  668. <div style="height: 320px; overflow: auto; padding-right: 10px;">
  669.  
  670. <!--insert pop-up content html here for pop2
  671.  
  672. <div id="poph1">poph1</div> is the code for the special mini headers!!
  673. -->
  674.  
  675. <div id="poph1">cupcake ipsum</div>
  676. 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.
  677.  
  678. <div id="poph1">cupcake ipsum</div>
  679. 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.
  680.  
  681. <div id="poph1">cupcake ipsum</div>
  682. 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.
  683.  
  684. </div>
  685. </div>
  686.  
  687. <div id="pop3" class="popup_block">
  688.  
  689.  
  690. <div style="height: 320px; overflow: auto; padding-right: 10px;">
  691. <!--insert pop-up content html here for pop3
  692.  
  693. <div id="poph1">poph1</div> is the code for the special mini headers!!
  694. -->
  695.  
  696. <div id="poph1">cupcake ipsum</div>
  697. 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.
  698.  
  699. <div id="poph1">cupcake ipsum</div>
  700. 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.
  701.  
  702. <div id="poph1">cupcake ipsum</div>
  703. 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.
  704.  
  705. </div>
  706. </div>
  707.  
  708. <div id="pop4" class="popup_block">
  709.  
  710. <div style="height: 320px; overflow: auto; padding-right: 10px;">
  711. <!--insert pop-up content html here for pop3
  712.  
  713. <div id="poph1">poph1</div> is the code for the special mini headers!!
  714. -->
  715.  
  716. <div id="poph1">cupcake ipsum</div>
  717. 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.
  718.  
  719. <div id="poph1">cupcake ipsum</div>
  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.
  721.  
  722. <div id="poph1">cupcake ipsum</div>
  723. 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.
  724.  
  725. </div>
  726. </div>
  727.  
  728.  
  729. <div id="pop5" class="popup_block">
  730.  
  731. <div style="height: 320px; overflow: auto; padding-right: 10px;">
  732. <!--insert pop-up content html here for pop3
  733.  
  734. <div id="poph1">poph1</div> is the code for the special mini headers!!
  735. -->
  736.  
  737. <div id="poplinks"><a href="/">title</a></div>
  738. <div id="poplinks"><a href="/">title</a></div>
  739. <div id="poplinks"><a href="/">title</a></div>
  740. <div id="poplinks"><a href="/">title</a></div>
  741. <div id="poplinks"><a href="/">title</a></div>
  742. <div id="poplinks"><a href="/">title</a></div>
  743. <div id="poplinks"><a href="/">title</a></div>
  744. <div id="poplinks"><a href="/">title</a></div>
  745. <div id="poplinks"><a href="/">title</a></div>
  746. <div id="poplinks"><a href="/">title</a></div>
  747. <div id="poplinks"><a href="/">title</a></div>
  748. <div id="poplinks"><a href="/">title</a></div>
  749. <div id="poplinks"><a href="/">title</a></div>
  750. <div id="poplinks"><a href="/">title</a></div>
  751.  
  752. </div>
  753. </div>
  754.  
  755.  
  756.  
  757.  
  758.  
  759. </body>
  760.  
  761.  
  762.  
  763. </html>
Advertisement
Add Comment
Please, Sign In to add comment