alicescreed

trickandmxgic

May 13th, 2020
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.73 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="link1">
  17. <meta name="text:pop2 link title" content="link2">
  18. <meta name="text:pop3 link title" content="link3">
  19. <meta name="text:pop4 link title" content="link4">
  20.  
  21. <meta name="color:text" content="#ffffff">
  22. <meta name="color:scrollbar" content="#ffffff">
  23. <meta name="color:bold" content="#ab2a28">
  24. <meta name="color:italic" content="#e8ba7d">
  25. <meta name="color:links" content="#6573c5">
  26. <meta name="color:borders" content="#ffffff">
  27. <meta name="color:hover link" content="#c4a44e">
  28.  
  29. <link href="https://fonts.googleapis.com/css2?family=Indie+Flower&family=Merriweather&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: 'Merriweather', serif;
  84. color: {color:text};
  85. font-size: 8pt;
  86. letter-spacing: 0px;
  87. background-color: #2e447b;
  88. background-image: url('https://i.imgur.com/WaLdaoC.png');
  89. background-position: top-right;
  90. background-repeat: no-repeat;
  91. background-attachment: fixed;
  92. line-height: 14pt;
  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: 0px;
  103. background-image: url('https://i.imgur.com/3Lg6fKL.gif');
  104. background-position: center;
  105. text-align: center;
  106. font-style: italic;
  107. box-shadow: 2px 2px 5px #000;
  108. font-family: 'Merriweather', serif;
  109. letter-spacing: 1px;
  110. text-shadow: 1px 1px 5px #000;
  111. border: 1px dotted {color:borders};
  112. padding: 10px;
  113. font-size: 12pt;
  114. margin-bottom: 5px;
  115. }
  116.  
  117. ::-webkit-scrollbar-thumb:vertical {
  118. background-color: {color:scrollbar};
  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:3px;
  129. width:3px;
  130. background-color: transparent;
  131. }
  132.  
  133.  
  134. a {
  135. text-decoration: none;
  136. color: {color:links};
  137. font-size: 12pt;
  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: 'Indie Flower', cursive;
  145. letter-spacing: 1px;
  146. text-shadow: 1px 1px 4px #000;
  147. }
  148.  
  149.  
  150. a:hover {
  151. text-decoration: none;
  152. filter:blur(1px);
  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: 1px 1px 5px #000;
  167. padding-left: 2px;
  168. padding-right: 2px;
  169. color:{color:bold};
  170. letter-spacing: 0px;
  171. font-size: 18pt;
  172. font-family: 'Indie Flower', cursive;
  173. }
  174.  
  175. i, em {
  176. text-shadow: 1px 1px 5px #000;
  177. color:{color:italic};
  178. font-family: 'Merriweather', serif;
  179. letter-spacing: 1px;
  180. padding-left:5px;
  181. padding-right: 5px;
  182. padding-top: 10px;
  183. padding-bottom: 10px;
  184. font-size: 16pt;
  185. }
  186.  
  187.  
  188.  
  189.  
  190. h2 {
  191. text-shadow: 1px 1px 5px #000;
  192. color: #fff;
  193. font-family: 'Indie Flower', 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.  
  204. margin-top: 10px;
  205. background-image: url('https://i.imgur.com/3Lg6fKL.gif');
  206. background-attachment:fixed;
  207. background-repeat: y-repeat;
  208. background-position: left;
  209. text-align: center;
  210. color: #fff;
  211. letter-spacing: 1px;
  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: 1px dotted {color:borders};
  219. }
  220.  
  221. #info a {
  222. font-size: 20pt;
  223. text-shadow: 1px 1px #000;
  224. font-weight:bold;
  225. font-family: 'Merriweather', serif;
  226. }
  227.  
  228. #h1 {
  229. text-align: center;
  230. color: #fff;
  231. font-family: 'Merriweather', serif;
  232. padding: 10px;
  233. text-shadow: 2px 2px 2px #000;
  234. line-height: 110%;
  235. font-size: 18pt;
  236. background-position: center;
  237. margin-bottom: 5px;
  238. }
  239.  
  240. #sidebar {
  241. margin-left:557px;
  242. width: 110px;
  243. font-size: 6pt;
  244. margin-top: 85px;
  245. position: fixed;
  246. background-color: transparent;
  247. }
  248.  
  249. #description {
  250. height:153px;
  251. padding-right: 5px;
  252. overflow: auto;
  253. }
  254.  
  255. #audio {
  256. text-align: center;
  257. font-size: 8pt;
  258. line-height: 9pt;
  259. }
  260.  
  261.  
  262. #musicinfo {
  263.  
  264. text-transform: uppercase;
  265. margin-top:10px;
  266. }
  267.  
  268. blockquote {
  269. border: 10px solid transparent;
  270. border-image:url('https://i.imgur.com/3Lg6fKL.gif') 50 round;
  271. outline: 1px dotted {color:borders};
  272. background-color: #9ea3bb;
  273. color:#11171a;
  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/3Lg6fKL.gif');
  310. text-align: center;
  311. font-style: italic;
  312. font-family: 'Merriweather', serif;
  313. letter-spacing: 1px;
  314. border: 1px {color:borders};
  315. border-style: solid;
  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: 'Merriweather', 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: 500px;
  347. margin-bottom: 25px;
  348. }
  349.  
  350. #posts {
  351. width: 500px;
  352. padding: 8px;
  353. height: auto;
  354. position: absolute;
  355. background-color: #11171a;
  356. margin-left:692px;
  357. border-left: 2px solid #9ea3bb;
  358. border-right: 2px solid #9ea3bb;
  359. margin-top: -10px;
  360. }
  361.  
  362. #ask {
  363. border: 20px solid transparent;
  364. border-image:url('https://i.imgur.com/3Lg6fKL.gif') 30 round;
  365. outline: 1px dotted {color:borders};
  366. text-align: center;
  367. color: #bcbcbc;
  368. padding: 10px;
  369. height: auto;
  370. background-color: #040404;
  371. }
  372.  
  373. #pa { margin-top: 10px;
  374. width: auto;
  375. text-align: center;
  376. }
  377.  
  378. #pa a {
  379. text-shadow: 1px 1px 5px #000;
  380. color: #fff;
  381. font-family: verdana;
  382. font-weight: bold;
  383. text-transform: uppercase;
  384. font-size: 10pt;
  385. }
  386.  
  387. @keyframes bounce {
  388. 0% { transform: translateY(0); }
  389. 100% { transform: translateY(-10px); }
  390. }
  391.  
  392. #links {
  393. position: fixed;
  394. text-align: right;
  395. line-height: 7pt;
  396. margin-top: -20px;
  397. }
  398.  
  399. #links a {
  400. font-family: 'Indie Flower', cursive;
  401. font-weight: bold;
  402. animation: bounce 2s;
  403. animation-direction: alternate;
  404. animation-iteration-count: infinite;
  405. transition-duration: 0.6s;
  406. -moz-transition-duration: 0.6s;
  407. -webkit-transition-duration: 0.6s;
  408. -o-transition-duration: 0.6s;
  409. font-size: 50px;
  410. background: -webkit-linear-gradient({color:bold}, {color:italic});
  411. -webkit-background-clip: text;
  412. -webkit-text-fill-color: #fff;
  413. opacity: .8;
  414. line-height: 22pt;
  415. }
  416.  
  417. #fade {
  418. display: none;
  419. background: #0c0c0c;
  420. background-repeat: no-repeat;
  421. background-position: top left;
  422. position: fixed;
  423. left: 0;
  424. top: 0;
  425. width: 100%;
  426. height: 100%;
  427. opacity: .5;
  428. z-index: 9999;
  429. }
  430.  
  431. .popup_block{
  432. display: none;
  433. padding: 20px;
  434. position: fixed;
  435. top: 50%;
  436. left: 50%;
  437. z-index: 99999;
  438. background-color: #0c0c0c;
  439. border: 20px solid transparent;
  440. border-image:url('https://i.imgur.com/3Lg6fKL.gif') 50 round;
  441. outline: 1px dotted {color:borders};
  442. box-shadow: 2px 2px 5px #000;
  443. }
  444.  
  445. img.btn_close {
  446. float: right;
  447. margin: -55px -55px 0 0;
  448. }
  449.  
  450. *html #fade {
  451. position: absolute;
  452. }
  453.  
  454. *html .popup_block {
  455. position: absolute;
  456. }
  457.  
  458.  
  459. #poplinks {
  460.  
  461. color: #fff;
  462. background-position: left;
  463. text-shadow: 1px 1px 3px #000;
  464. background-image: url('https://i.imgur.com/3Lg6fKL.gif');
  465. background-attachment:fixed;
  466. background-repeat:repeat;
  467. text-align: center;
  468. font-family: verdana;
  469. border: 1px dotted {color:borders};
  470. padding: 2px;
  471. font-size: 8pt;
  472. font-weight: bold;
  473. text-transform: uppercase;
  474. margin-bottom: 5px;
  475. margin-top: 5px;
  476.  
  477. }
  478.  
  479. #poplinks a {
  480. text-align: center;
  481. font-family: verdana;
  482. font-size: 8pt;
  483. font-weight: bold;
  484. text-transform: uppercase;
  485. text-shadow: 1px 1px 3px #000;
  486. color: #fff;
  487. }
  488.  
  489. #poph1 {
  490.  
  491. color: #fff;
  492. background-position: center;
  493. text-shadow: 1px 1px 3px #000;
  494. background-image: url('https://i.imgur.com/3Lg6fKL.gif');
  495. background-attachment:fixed;
  496. background-repeat:repeat;
  497. text-align: center;
  498. font-family: verdana;
  499. border: 1px dotted {color:borders};
  500. padding: 5px;
  501. font-size: 8pt;
  502. font-weight: bold;
  503. text-transform: uppercase;
  504. margin-bottom: 5px;
  505. margin-top: 10px;
  506. }
  507.  
  508. #ask a {
  509. text-shadow: 2px 2px 5px #000;
  510. }
  511.  
  512. #desctitle {
  513. padding: 4px;
  514. font-family: verdana;
  515. text-transform: uppercase;
  516. font-size: 8px;
  517. text-shadow: 1px 1px 3px #000;
  518. color: #fff;
  519. font-weight: bold;
  520. border: 1px dotted {color:borders};
  521. text-align: center;
  522. background-position: center;
  523. background-image: url('https://i.imgur.com/3Lg6fKL.gif');
  524. }
  525.  
  526. </style>
  527.  
  528. </head>
  529.  
  530. <body>
  531.  
  532. <div id="links">
  533. <a href="/" title="return" style="position: fixed; margin-left: 100px; margin-top: 50px;">♦</a><br>
  534. <a href="#?w=500" rel="askme" class="poplight" title="message" style="position: fixed; margin-left: 20px; margin-top: 180px;">✦</a><br>
  535. <a href="#?w=500" rel="pop1" class="poplight" title="{text:pop1 link title}" style="position: fixed; margin-left: 200px; margin-top:240px;">♦</a><br>
  536. <a href="#?w=500" rel="pop2" class="poplight" title="{text:pop2 link title}" style="position: fixed; margin-left: 450px; margin-top:120px;">✦</a><br>
  537. <a href="#?w=500" rel="pop3" class="poplight" title="{text:pop3 link title}" style="position: fixed; margin-left: 600px; margin-top:450px;">♦</a><br>
  538. <a href="#?w=500" rel="pop4" class="poplight" title="{text:pop4 link title}" style="position: fixed; margin-left: 450px; margin-top:550px;">✦</a><br>
  539. </div>
  540.  
  541. <div id="sidebar">
  542. <div id="desctitle" style="margin-bottom: 5px;">{title}</div>
  543. <div id="description">
  544. {Description}
  545. </div>
  546. <div id="pa">{block:Pagination}
  547. {block:PreviousPage}
  548. <a href="{PreviousPage}">fall</a> /
  549. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  550. {/block:NextPage}
  551. {/block:Pagination}</div>
  552. </div>
  553.  
  554. <div id="posts">
  555.  
  556.  
  557. {block:Posts}<div id="post">
  558.  
  559.  
  560.  
  561. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  562.  
  563. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  564.  
  565. {Caption} {/block:Caption}{/block:Photo}
  566.  
  567. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}
  568.  
  569. {/block:Photoset}
  570.  
  571. {block:Quote}<b style="text-align: center; font-size: 24pt; line-height: 20pt;">{Quote}</b>{block:Source}<div style="text-align:center;">—{Source}</div>{/block:Source}{/block:Quote}
  572.  
  573. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  574.  
  575. {Description}{/block:Description}{/block:Link}
  576.  
  577. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  578.  
  579. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  580.  
  581. {block:Audio}
  582. <div id="audio">
  583. {block:TrackName}
  584. <div id="musicinfo" style="margin-top: 5px;">
  585. {AudioPlayerGrey} <br>
  586. {TrackName} by
  587. {/block:TrackName}
  588. {block:Artist}
  589. {Artist}
  590. {/block:Artist}
  591.  
  592. </div>
  593. </div>
  594. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  595. {/block:Audio}
  596.  
  597.  
  598. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  599.  
  600. {block:Answer}
  601. <div id="ask">
  602. <center>
  603. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; border:1px dotted {color:borders}; box-shadow: 3px 3px 5px #000; margin-bottom: 4px;"></center>
  604. {Asker} asked,<br>
  605. {Question}
  606. </div>
  607. {Answer}{/block:Answer}
  608.  
  609. <div id="info">
  610. <a title="{TimeAgo}" title="{TimeAgo}">✦</a> <a href="{Permalink}" title="{NoteCount} notes">✦</a> <a href="{ReblogURL}" title="reblog">✦</a>
  611. <div id="tags">
  612. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  613. {/block:Tags}{/block:HasTags}
  614. </div>
  615. </div>
  616.  
  617.  
  618. </div>
  619. {block:PostNotes}<Div style="width: 500px;">
  620.  
  621.  
  622. {PostNotes}</div>{/block:PostNotes}
  623. {/block:Posts}</div>
  624.  
  625.  
  626. <div id="credit">
  627. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  628. </div>
  629.  
  630. <div id="askme" class="popup_block">
  631. <div id="poph1">ask</div>
  632. <iframe frameborder="0"
  633. height="190"
  634. id="ask_form"
  635. scrolling="no"
  636. src="https://www.tumblr.com/ask_form/getsuruito.tumblr.com"
  637. width="500">
  638. </iframe>
  639. </div>
  640.  
  641. <div id="pop1" class="popup_block">
  642.  
  643. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  644. <div id="poph1">cupcake ipsum</div>
  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. 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.
  649.  
  650. <div id="poph1">cupcake ipsum</div>
  651. 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.
  652. <!--insert pop-up content html here for pop1
  653.  
  654. <div id="poph1">poph1</div> is the code for the special mini headers!!
  655. -->
  656. </div>
  657. </div>
  658.  
  659. <div id="pop2" class="popup_block">
  660.  
  661. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  662.  
  663. <!--insert pop-up content html here for pop2
  664.  
  665. <div id="poph1">poph1</div> is the code for the special mini headers!!
  666. -->
  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 id="poph1">cupcake ipsum</div>
  675. 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.
  676.  
  677. </div>
  678. </div>
  679.  
  680. <div id="pop3" class="popup_block">
  681.  
  682. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  683. <!--insert pop-up content html here for pop3
  684.  
  685. <div id="poph1">poph1</div> is the code for the special mini headers!!
  686. -->
  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 id="poph1">cupcake ipsum</div>
  692. 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.
  693.  
  694. <div id="poph1">cupcake ipsum</div>
  695. 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.
  696.  
  697. </div>
  698. </div>
  699.  
  700.  
  701. <div id="pop4" class="popup_block">
  702.  
  703. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  704. <!--insert pop-up content html here for pop4
  705.  
  706. <div id="poph1">poph1</div> is the code for the special mini headers!!
  707. -->
  708.  
  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. <div id="poplinks"><a href="/">title</a></div>
  715. <div id="poplinks"><a href="/">title</a></div>
  716. <div id="poplinks"><a href="/">title</a></div>
  717. <div id="poplinks"><a href="/">title</a></div>
  718. <div id="poplinks"><a href="/">title</a></div>
  719. <div id="poplinks"><a href="/">title</a></div>
  720. <div id="poplinks"><a href="/">title</a></div>
  721.  
  722.  
  723. </div>
  724. </div>
  725.  
  726.  
  727.  
  728.  
  729. </body>
  730.  
  731.  
  732.  
  733. </html>
Add Comment
Please, Sign In to add comment