alicescreed

hrlyqn 3.26.2020

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