alicescreed

klarazy

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