alicescreed

azulashengrotto;

Jul 15th, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.98 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="#ffffff">
  17. <meta name="color:bold" content="#6d6d6d">
  18. <meta name="color:italic" content="#e9cbb1">
  19. <meta name="color:links" content="#ab18d0">
  20. <meta name="color:borders" content="#5b3867">
  21. <meta name="color:hover link" content="#ffffff">
  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.  
  28.  
  29. <link href="https://fonts.googleapis.com/css2?family=Grenze+Gotisch&family=Kaushan+Script&family=Roboto&display=swap" rel="stylesheet">
  30.  
  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: 8pt;
  86. letter-spacing: .5px;
  87. background-color:#111111;
  88. background-image: url('https://i.imgur.com/WWVYmA3.png');
  89. background-position: top-right;
  90. background-repeat: no-repeat;
  91. background-attachment: fixed;
  92. line-height: 12pt;
  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. color: #fff;
  102. display: block;
  103. background-image: url('https://i.imgur.com/GslqiDU.png');
  104. background-position: center;
  105. text-align: center;
  106. font-style: italic;
  107. box-shadow: 2px 2px 5px #000;
  108. font-family: 'Grenze Gotisch', cursive;
  109. letter-spacing: 1px;
  110. text-shadow: 1px 1px 1px red;
  111. border: 4px double {color:borders};
  112. padding: 10px;
  113. font-size: 22pt;
  114. margin-bottom: 5px;
  115. }
  116.  
  117. ::-webkit-scrollbar-thumb:vertical {
  118. background-color: transparent;
  119. height:auto;
  120. }
  121.  
  122. ::-webkit-scrollbar-thumb:horizontal {
  123. background-color: {color:scrollbar};
  124. height:2px;
  125. }
  126.  
  127. ::-webkit-scrollbar {
  128. height:2px;
  129. width:2px;
  130. background-color: transparent;
  131. }
  132.  
  133.  
  134. a {
  135. text-decoration: none;
  136. color: {color:links};
  137. font-size: 14pt;
  138. line-height: 16pt;
  139. font-weight: bold;
  140. transition-duration: 0.6s;
  141. -moz-transition-duration: 0.6s;
  142. -webkit-transition-duration: 0.6s;
  143. -o-transition-duration: 0.6s;
  144. font-family: 'Grenze Gotisch', cursive;
  145. letter-spacing: 1px;
  146. text-shadow: 2px 2px 4px #000;
  147. }
  148.  
  149.  
  150. a:hover {
  151. text-decoration: none;
  152. filter:blur(2px);
  153. letter-spacing: 1px;
  154. color: {color:hover link};
  155. transition-duration: 0.6s;
  156. -moz-transition-duration: 0.6s;
  157. -webkit-transition-duration: 0.6s;
  158. -o-transition-duration: 0.6s;
  159. }
  160.  
  161. small, sup, sub {
  162. font-size: 100%;
  163. }
  164.  
  165. b, strong {
  166. text-shadow: 2px 2px 4px #403d4a;
  167. padding-left: 2px;
  168. padding-right: 2px;
  169. color:{color:bold};
  170. letter-spacing: 0px;
  171. font-size: 14pt;
  172. font-family: 'Grenze Gotisch', cursive;
  173. }
  174.  
  175. i, em {
  176. text-shadow: 2px 2px 4px #403d4a;
  177. color:{color:italic};
  178. font-family: 'Kaushan Script', cursive;
  179. letter-spacing: 1px;
  180. padding-left:5px;
  181. padding-right: 5px;
  182. padding-top: 10px;
  183. padding-bottom: 10px;
  184. font-weight: bold;
  185. font-size: 14pt;
  186. }
  187.  
  188.  
  189.  
  190.  
  191. h2 {
  192. text-shadow: 2px 2px 4px #000;
  193. font-family: 'Kaushan Script', cursive;
  194. font-size: 16pt;
  195. font-weight: bold;
  196. line-height: 120%;
  197. letter-spacing: 1px;
  198. }
  199.  
  200.  
  201. #info {
  202. padding: 10px;
  203. margin-top: 10px;
  204. background-image: url('https://i.imgur.com/GslqiDU.png');
  205. text-align: center;
  206. background-attachment:fixed;
  207. background-position: top right;
  208. background-repeat:repeat;
  209. color: #fff;
  210. letter-spacing: 1px;
  211.  
  212. text-shadow: 1px 1px #000;
  213. transition-duration: 0.6s;
  214. -moz-transition-duration: 0.6s;
  215. -webkit-transition-duration: 0.6s;
  216. -o-transition-duration: 0.6s;
  217. font-size:14pt;
  218. border: 4px double {color:borders};
  219. }
  220.  
  221. #info a {
  222. font-size: 14pt;
  223. text-shadow: 2px 2px 4px #000;
  224. font-weight:bold;
  225. color: {color:links};
  226. }
  227.  
  228. #h1 {
  229. text-align: center;
  230. font-family: 'Roboto', sans-serif;
  231. padding: 10px;
  232. text-shadow: 2px 2px 4px #000;
  233. line-height: 110%;
  234. font-size: 18pt;
  235. background-position: center;
  236. margin-bottom: 5px;
  237. }
  238.  
  239. #sidebar {
  240. margin-left:477px;
  241. width: 110px;
  242. font-size: 10pt;
  243. margin-top: 330px;
  244. position: fixed;
  245. background-color: transparent;
  246. }
  247.  
  248. #description {
  249. height:190px;
  250. font-size: 10px;
  251. line-height: 14px;
  252. padding-right: 5px;
  253. overflow: auto;
  254. }
  255.  
  256. #audio {
  257. text-align: center;
  258. font-size: 8pt;
  259. line-height: 9pt;
  260. }
  261.  
  262.  
  263. #musicinfo {
  264.  
  265. text-transform: uppercase;
  266. margin-top:10px;
  267. }
  268.  
  269. blockquote {
  270. border-left: 5px solid;
  271. padding: 5px;
  272. font-size: 95%
  273. }
  274.  
  275. blockquote img {
  276. max-width: 100%;
  277. display: block;
  278. height: auto
  279. }
  280.  
  281. img {
  282. max-width: 100%;
  283. display: block;
  284. height: auto;
  285. }
  286.  
  287.  
  288. ol.notes {
  289. text-align: left;
  290. list-style: upper-roman;
  291. padding: 10px;
  292.  
  293. }
  294.  
  295.  
  296. #info a:hover {
  297. color: {color:bold};
  298. }
  299.  
  300. #credit {
  301. right:10px;
  302. bottom:7px;
  303. padding:5px;
  304. font-size:10px;
  305. position:fixed;
  306. background-image: url('https://i.imgur.com/GslqiDU.png');
  307. text-align: center;
  308. font-style: italic;
  309. font-family: 'Roboto', sans-serif;
  310. letter-spacing: 1px;
  311. border: 1px {color:borders};
  312. border-style: dashed;
  313. padding: 5px;
  314. font-size: 120%;
  315. margin-bottom: 5px;
  316. transition-duration: 0.6s;
  317. -moz-transition-duration: 0.6s;
  318. -webkit-transition-duration: 0.6s;
  319. -o-transition-duration: 0.6s;
  320. }
  321.  
  322.  
  323. #credit a {
  324. font-family: 'Roboto', sans-serif;
  325. color:#fff;
  326. padding:5px;
  327. letter-spacing:1px;
  328. text-decoration:none;
  329. font-weight:bold;
  330. }
  331.  
  332. #tags a {
  333. font-family: 'Kaushan Script', cursive;
  334. font-weight: bold;
  335. font-size: 8px;
  336. line-height: 6px;
  337. color: #fff;
  338. text-transform: uppercase;
  339. text-shadow: 1px 1px 1px #000;
  340. }
  341.  
  342. #post {
  343. width: 400px;
  344. margin-bottom: 25px;
  345. }
  346.  
  347. #posts {
  348. width: 400px;
  349. padding: 15px;
  350. height: 495px;
  351. overflow: auto;
  352. margin-top: 40px;
  353. position: absolute;
  354. margin-left:630px;
  355. }
  356.  
  357. #ask a {
  358. text-shadow: 2px 2px 4px #000;
  359. font-size:20pt;
  360. color: #fff;
  361. }
  362.  
  363. #ask {
  364. background-image: url('https://i.imgur.com/GslqiDU.png');
  365. background-position: center;
  366. text-align: center;
  367. color: #fff;
  368. padding: 10px;
  369. height: auto;
  370. border: 4px double {color:borders};
  371. background-color: #040404;
  372. text-shadow: 1px 1px 2px #000;
  373. }
  374.  
  375. #pa { margin-top: 15px;
  376. text-align: center;
  377. }
  378.  
  379. #pa a {
  380. color: #fff;
  381. text-shadow: 1px 1px 1px {color:bold};
  382. font-family: 'Roboto', sans-serif;
  383. text-transform: uppercase;
  384. font-size: 11pt;
  385. }
  386.  
  387. @keyframes bounce {
  388. 0% { transform: translateY(0); }
  389. 100% { transform: translateY(-10px); }
  390. }
  391.  
  392. #links {
  393. margin-left: 1075px;
  394. margin-top: 100px;
  395. position: fixed;
  396. }
  397.  
  398. #links a {
  399. animation: bounce 2s;
  400. animation-direction: alternate;
  401. animation-iteration-count: infinite;
  402. transition-duration: 1s;
  403. -moz-transition-duration: 1s;
  404. -webkit-transition-duration:1s;
  405. -o-transition-duration: 1s;
  406. font-weight: bold;
  407. font-size: 14pt;
  408. color: #fff;
  409. text-shadow: 2px 2px 4px #000;
  410. line-height: 16pt;
  411. font-family: 'Roboto', sans-serif;
  412. }
  413.  
  414. #desctitle {
  415. padding: 4px;
  416. font-family: verdana;
  417. text-transform: uppercase;
  418. font-size: 8px;
  419. text-shadow: 1px 1px 3px #000;
  420. color: #fff;
  421. font-weight: bold;
  422. border: 4px double {color:borders};
  423. text-align: center;
  424. background-position: center;
  425. background-image: url('https://i.imgur.com/GslqiDU.png');
  426. }
  427.  
  428. #fade {
  429. display: none;
  430. background-color: #000;
  431. position: fixed;
  432. left: 0;
  433. top: 0;
  434. width: 100%;
  435. height: 100%;
  436. opacity: .7;
  437. z-index: 9999;
  438. }
  439.  
  440. .popup_block{
  441. display: none;
  442. padding: 20px;
  443. position: fixed;
  444. top: 50%;
  445. left: 50%;
  446. background-color: #111111;
  447. z-index: 99999;
  448. outline: 3px solid {Color:Borders};
  449. box-shadow: 2px 2px 5px gray;
  450. }
  451.  
  452. img.btn_close {
  453. float: right;
  454. margin: -55px -55px 0 0;
  455. }
  456.  
  457. *html #fade {
  458. position: absolute;
  459. }
  460.  
  461. *html .popup_block {
  462. position: absolute;
  463. }
  464.  
  465.  
  466. #poplinks {
  467.  
  468. color: #fff;
  469. background-position: left;
  470. text-shadow: 1px 1px 3px #000;
  471. background-image: url('https://i.imgur.com/GslqiDU.png');
  472. background-attachment:fixed;
  473. background-position: top right;
  474. background-repeat:repeat;
  475. text-align: center;
  476. font-family: verdana;
  477. border: 4px double {color:borders};
  478. padding: 2px;
  479. font-size: 8pt;
  480. font-weight: bold;
  481. text-transform: uppercase;
  482. margin-bottom: 5px;
  483. margin-top: 5px;
  484.  
  485. }
  486.  
  487. #poplinks a {
  488. text-align: center;
  489. font-family: verdana;
  490. font-size: 8pt;
  491. font-weight: bold;
  492. text-transform: uppercase;
  493. text-shadow: 1px 1px 3px #000;
  494. color: #fff;
  495. }
  496.  
  497. #poph1 {
  498.  
  499. color: #fff;
  500. background-position: center;
  501. text-shadow: 1px 1px 3px #000;
  502. background-image: url('https://i.imgur.com/GslqiDU.png');
  503. background-attachment:fixed;
  504. background-repeat:repeat;
  505. text-align: center;
  506. font-family: verdana;
  507. border: 4px double {color:borders};
  508. padding: 5px;
  509. font-size: 8pt;
  510. font-weight: bold;
  511. text-transform: uppercase;
  512. margin-bottom: 10px;
  513. }
  514.  
  515. h1 {
  516. font-family: 'Roboto', sans-serif;
  517. font-size: 16pt;
  518. color: {color:bold};
  519. }
  520.  
  521. h3 {
  522. font-family: 'Roboto', sans-serif;
  523. font-size: 16pt;
  524. color: {color:italic};
  525. }
  526.  
  527. @keyframes bounce {
  528. 0% { transform: translateY(0); }
  529. 100% { transform: translateY(-10px); }
  530. }
  531.  
  532. </style>
  533.  
  534. </head>
  535.  
  536. <body>
  537.  
  538. <div id="links">
  539. <a href="/" title="return">I. </a><br>
  540. <a href="/ask" title="message">II.️</a><br>
  541. <a href="#?w=500" rel="pop1" class="poplight" title="{text:pop1 title}" >III.️</a><br>
  542. <a href="#?w=500" rel="pop2" class="poplight" title="{text:pop2 title}">IV.️</a><br>
  543. <a href="#?w=500" rel="pop3" class="poplight" title="{text:pop3 title}">V.️</a><br>
  544. <a href="#?w=500" rel="pop4" class="poplight" title="{text:pop4 title}">VI.️</a><br>
  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}">I.</a> <a href="{Permalink}" title="{NoteCount} notes">II.</a> <a href="{ReblogURL}" title="reblog">III.</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="pop1" class="popup_block">
  638.  
  639.  
  640.  
  641. <div style="height: 360px; overflow: auto;">
  642.  
  643. <div id="poph1">cupcake ipsum</div>
  644.  
  645. 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.
  646.  
  647. <div id="poph1">cupcake ipsum</div>
  648.  
  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.  
  652. </div>
  653. </div>
  654.  
  655. <div id="pop2" class="popup_block">
  656.  
  657.  
  658. <div style="height: 360px; overflow: auto;">
  659.  
  660. <!--insert pop-up content html here for pop2
  661.  
  662. <div id="poph1">poph1</div> is the code for the special mini headers!!
  663. -->
  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 id="poph1">cupcake ipsum</div>
  672. 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.
  673.  
  674. </div>
  675. </div>
  676.  
  677. <div id="pop3" class="popup_block">
  678.  
  679.  
  680. <div style="height: 360px; overflow: auto;">
  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. <div id="pop3" class="popup_block">
  698.  
  699.  
  700. <div style="height: 360px; overflow: auto;">
  701. <!--insert pop-up content html here for pop3
  702.  
  703. <div id="poph1">poph1</div> is the code for the special mini headers!!
  704. -->
  705.  
  706. <div id="poph1">cupcake ipsum</div>
  707. 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.
  708.  
  709. <div id="poph1">cupcake ipsum</div>
  710. 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.
  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>
  716. </div>
  717.  
  718.  
  719. <div id="pop4" class="popup_block">
  720.  
  721.  
  722.  
  723. <div style="height: 360px; overflow: auto;">
  724. <!--insert pop-up content html here for pop3
  725.  
  726. <div id="poph1">poph1</div> is the code for the special mini headers!!
  727. -->
  728.  
  729. <div id="poplinks"><a href="/">title</a></div>
  730. <div id="poplinks"><a href="/">title</a></div>
  731. <div id="poplinks"><a href="/">title</a></div>
  732. <div id="poplinks"><a href="/">title</a></div>
  733. <div id="poplinks"><a href="/">title</a></div>
  734. <div id="poplinks"><a href="/">title</a></div>
  735. <div id="poplinks"><a href="/">title</a></div>
  736. <div id="poplinks"><a href="/">title</a></div>
  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.  
  744. </div>
  745. </div>
  746.  
  747.  
  748.  
  749.  
  750.  
  751. </body>
  752.  
  753.  
  754.  
  755. </html>
Advertisement
Add Comment
Please, Sign In to add comment