alicescreed

viceflame

Jul 10th, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.93 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="#000000">
  17. <meta name="color:bold" content="#b70000">
  18. <meta name="color:italic" content="#c13b00">
  19. <meta name="color:links" content="#cb8f02">
  20. <meta name="color:borders" content="#b70000">
  21. <meta name="color:hover link" content="#000000">
  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.  
  29. <link href="https://fonts.googleapis.com/css2?family=Krona+One&family=Oxygen&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: 'Oxygen', sans-serif;
  84. color: {color:text};
  85. font-size: 9pt;
  86. letter-spacing: 0px;
  87. background-color:#1a0704;
  88. background-image: url('https://i.imgur.com/tlcclAE.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. display: block;
  102. color: #fff;
  103. background-image: url('https://i.imgur.com/sUapHvf.png');
  104. background-attachment: fixed;
  105. background-repeat: repeat;
  106. background-position: center;
  107. text-align: center;
  108. font-style: italic;
  109. box-shadow: 2px 2px 5px #000;
  110. font-family: 'Oxygen', sans-serif;
  111. letter-spacing: 1px;
  112. text-shadow: 1px 1px 5px black;
  113. border: 4px double{Color:Borders};
  114. padding: 10px;
  115. font-size: 22pt;
  116. margin-bottom: 5px;
  117. }
  118.  
  119. ::-webkit-scrollbar-thumb:vertical {
  120. background-color: {color:scrollbar};
  121. height:auto;
  122. }
  123.  
  124. ::-webkit-scrollbar-thumb:horizontal {
  125. background-color: {color:scrollbar};
  126. height:2px;
  127. }
  128.  
  129. ::-webkit-scrollbar {
  130. height:2px;
  131. width:2px;
  132. background-color:transparent;
  133. }
  134.  
  135.  
  136. a {
  137. text-decoration: none;
  138. color: {color:links};
  139. font-size: 13pt;
  140. line-height: 19pt;
  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: 'Krona One', sans-serif;
  146. font-weight: bold;
  147. letter-spacing: 1px;
  148. text-shadow: 1px 1px 3px black;
  149. }
  150.  
  151.  
  152. a:hover {
  153. text-decoration: none;
  154. letter-spacing: 1px;
  155. filter:blur(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. }
  162.  
  163. small, sup, sub {
  164. font-size: 100%;
  165. }
  166.  
  167. b, strong {
  168. text-shadow: 1px 1px 4px black;
  169. padding-left: 2px;
  170. padding-right: 2px;
  171. color:{color:bold};
  172. letter-spacing: 0px;
  173. font-size: 12pt;
  174. font-family: 'Oxygen', sans-serif;
  175. }
  176.  
  177. i, em {
  178. text-shadow: 1px 1px 4px black;
  179. color:{color:italic};
  180. font-style: italic;
  181. font-family: 'Krona One', sans-serif;
  182. letter-spacing: 1px;
  183. padding-left:5px;
  184. padding-right: 5px;
  185. padding-top: 10px;
  186. padding-bottom: 10px;
  187. font-size: 13pt;
  188. }
  189.  
  190.  
  191.  
  192.  
  193. h2 {
  194. text-shadow: 1px 1px 5px black;
  195. color: #fff;
  196. font-family: 'Oxygen', sans-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. margin-top: 10px;
  207. background-image: url('https://i.imgur.com/sUapHvf.png');
  208. background-repeat: repeat;
  209. background-attachment: fixed;
  210. text-align: center;
  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: 4px double{Color:Borders};
  219. }
  220.  
  221. #info a {
  222. font-size: 24pt;
  223. text-shadow: 1px 1px 3px black;
  224. font-weight:bold;
  225. }
  226.  
  227. #h1 {
  228. text-align: center;
  229. color: #fff;
  230. font-family: 'Oxygen', sans-serif;
  231. padding: 10px;
  232. text-shadow: 1px 1px 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:638px;
  241. width: 115px;
  242. font-size: 10pt;
  243. margin-top:190px;
  244. position: fixed;
  245. }
  246.  
  247. #description {
  248. height:155px;
  249. font-size: 10px;
  250. line-height: 14px;
  251. overflow: auto;
  252. }
  253.  
  254. #audio {
  255. text-align: center;
  256. font-size: 8pt;
  257. line-height: 9pt;
  258. }
  259.  
  260.  
  261. #musicinfo {
  262.  
  263. text-transform: uppercase;
  264. margin-top:10px;
  265. }
  266.  
  267. blockquote {
  268. border-left: 5px solid {color:italic};
  269. background-color: #1a0704;
  270. color: gray;
  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/sUapHvf.png');
  307. text-align: center;
  308. font-style: italic;
  309. font-family: 'Oxygen', sans-serif;
  310. letter-spacing: 1px;
  311. border: 4px double {Color:Borders};
  312. padding: 5px;
  313. font-size: 120%;
  314. margin-bottom: 5px;
  315. transition-duration: 0.6s;
  316. -moz-transition-duration: 0.6s;
  317. -webkit-transition-duration: 0.6s;
  318. -o-transition-duration: 0.6s;
  319. }
  320.  
  321.  
  322. #credit a {
  323. font-family: 'Oxygen', sans-serif;
  324. color:#fff;
  325. padding:5px;
  326. letter-spacing:1px;
  327. text-decoration:none;
  328. font-weight:bold;
  329. }
  330.  
  331. #tags a {
  332. font-family: verdana;
  333. font-weight: bold;
  334. font-size: 8px;
  335. line-height: 6px;
  336. color: #fff;
  337. text-transform: uppercase;
  338. text-shadow: 1px 1px 1px black;
  339. }
  340.  
  341. #post {
  342. width: 400px;
  343. margin-bottom: 25px;
  344. }
  345.  
  346. #posts {
  347. width: 400px;
  348. background-color: #4b3939;
  349. height: auto;
  350. border-left: 3px solid #1a0704;
  351. border-right: 3px solid #1a0704;
  352. overflow-y: auto;
  353. margin-top: 20px;
  354. padding: 25px;
  355. position: absolute;
  356. margin-left:777px;
  357. }
  358.  
  359. #ask a {
  360. color: {color:italic};
  361. font-size:20pt;
  362. }
  363.  
  364. #ask {
  365. background-image: url('https://i.imgur.com/sUapHvf.png');
  366. background-repeat: repeat;
  367. text-align: center;
  368. color: #fff;
  369. padding: 10px;
  370. height: auto;
  371. border: 4px double{Color:Borders};
  372. background-color: #040404;
  373. text-shadow: 1px 1px 2px black;
  374. }
  375.  
  376. #pa { margin-top: 20px;
  377. text-align: center;
  378. }
  379.  
  380. #pa a {
  381. text-shadow: 1px 1px 5px black;
  382. color: #fff;
  383. font-family: 'Oxygen', sans-serif;
  384. text-transform: uppercase;
  385. font-size: 15pt;
  386. }
  387.  
  388. #links {
  389. position: fixed;
  390. text-align: left;
  391. line-height: 17pt;
  392. margin-top: 100px;
  393. margin-left: 1250px;
  394. transition-duration: 0.6s;
  395. -moz-transition-duration: 0.6s;
  396. -webkit-transition-duration: 0.6s;
  397. -o-transition-duration: 0.6s;
  398. }
  399.  
  400. #links a {
  401. font-weight: bold;
  402. filter:blur(0px);
  403. animation: spin 6s;
  404. animation-direction: alternate;
  405. animation-iteration-count: infinite;
  406. transition-duration: 1s;
  407. -moz-transition-duration: 1s;
  408. -webkit-transition-duration:1s;
  409. -o-transition-duration: 1s;
  410. text-shadow: 2px 2px 4px red;
  411. font-size: 24pt;
  412. color: #000;
  413. line-height: 16pt;
  414. font-family: 'Oxygen', sans-serif;
  415. }
  416.  
  417. @keyframes spin {
  418. from {transform:rotate(0deg);}
  419. to {transform:rotate(360deg);}
  420. }
  421.  
  422. #links a:hover {
  423. filter:blur(3px); transition-duration: 0.6s;
  424. -moz-transition-duration: 0.6s;
  425. -webkit-transition-duration: 0.6s;
  426. -o-transition-duration: 0.6s;
  427.  
  428. }
  429.  
  430. #desctitle {
  431. padding: 4px;
  432. font-family: verdana;
  433. text-transform: uppercase;
  434. font-size: 8px;
  435. text-shadow: 1px 1px 3px black;
  436. color: #fff;
  437. font-weight: bold;
  438. border: 4px double{Color:Borders};
  439. text-align: center;
  440. background-position: center;
  441. background-image: url('https://i.imgur.com/sUapHvf.png');
  442. }
  443.  
  444. #fade {
  445. display: none;
  446. background: #000;
  447. position: fixed;
  448. left: 0;
  449. top: 0;
  450. width: 100%;
  451. height: 100%;
  452. opacity: .5;
  453. z-index: 9999;
  454. }
  455.  
  456. .popup_block{
  457. display: none;
  458. padding: 20px;
  459. position: fixed;
  460. top: 50%;
  461. left: 50%;
  462. z-index: 99999;
  463. background-color: #4b3939;
  464. border-image:url('https://i.imgur.com/sUapHvf.png') 30 round;
  465. border: 3px solid #1a0704;
  466. box-shadow: 2px 2px 5px black;
  467. }
  468.  
  469. img.btn_close {
  470. float: right;
  471. margin: -55px -55px 0 0;
  472. }
  473.  
  474. *html #fade {
  475. position: absolute;
  476. }
  477.  
  478. *html .popup_block {
  479. position: absolute;
  480. }
  481.  
  482.  
  483. #poplinks {
  484.  
  485. color: #fff;
  486. background-position: left;
  487. text-shadow: 1px 1px 3px black;
  488. background-image: url('https://i.imgur.com/sUapHvf.png');
  489. background-attachment:fixed;
  490. background-repeat: repeat;
  491. background-position: top right;
  492. background-repeat:repeat;
  493. text-align: center;
  494. font-family: verdana;
  495. border: 4px double{Color:Borders};
  496. padding: 2px;
  497. font-size: 8pt;
  498. font-weight: bold;
  499. text-transform: uppercase;
  500. margin-bottom: 5px;
  501. margin-top: 5px;
  502.  
  503. }
  504.  
  505. #poplinks a {
  506. text-align: center;
  507. font-family: verdana;
  508. font-size: 8pt;
  509. font-weight: bold;
  510. text-transform: uppercase;
  511. text-shadow: 1px 1px 3px black;
  512. color: #fff;
  513. }
  514.  
  515. #poph1 {
  516.  
  517. color: #fff;
  518. background-position: center;
  519. text-shadow: 1px 1px 3px black;
  520. background-image: url('https://i.imgur.com/sUapHvf.png');
  521. background-attachment:fixed;
  522. background-repeat: repeat;
  523. background-repeat:repeat;
  524. text-align: center;
  525. font-family: verdana;
  526. border: 4px double{Color:Borders};
  527. padding: 5px;
  528. font-size: 8pt;
  529. font-weight: bold;
  530. text-transform: uppercase;
  531. margin-bottom: 10px;
  532. margin-top: 5px;
  533. }
  534.  
  535. #left {
  536. float:left;
  537. margin-right: 10px;
  538. }
  539.  
  540.  
  541. </style>
  542.  
  543. </head>
  544.  
  545. <body>
  546.  
  547. <div id="links">
  548. <a href="/" title="home">✡</a><br>
  549.  
  550. <a href="#?w=450" rel="askme" class="poplight" title="message">✡</a><br>
  551.  
  552. <a href="#?w=450" rel="pop1" class="poplight" title="{text:pop1 link title}">✡</a><br>
  553.  
  554. <a href="#?w=450" rel="pop2" class="poplight" title="{text:pop2 link title}">✡</a><br>
  555.  
  556. <a href="#?w=450" rel="pop3" class="poplight" title="{text:pop3 link title}">✡</a><br>
  557.  
  558. <a href="#?w=450" rel="pop4" class="poplight" title="{text:pop4 link title}" >✡</a><br>
  559.  
  560. </div>
  561.  
  562. <div id="sidebar">
  563. <div id="desctitle" style="margin-bottom: 5px;">{title}</div>
  564. <div id="description">
  565. {Description}
  566. </div>
  567. <div id="pa">{block:Pagination}
  568. {block:PreviousPage}
  569. <a href="{PreviousPage}">ascend</a> /
  570. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">descend</a>
  571. {/block:NextPage}
  572. {/block:Pagination}</div>
  573. </div>
  574.  
  575. <div id="posts">
  576.  
  577.  
  578. {block:Posts}<div id="post">
  579.  
  580.  
  581.  
  582. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  583.  
  584. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  585.  
  586. {Caption} {/block:Caption}{/block:Photo}
  587.  
  588. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  589.  
  590. {/block:Photoset}
  591.  
  592. {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}
  593.  
  594. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  595.  
  596. {Description}{/block:Description}{/block:Link}
  597.  
  598. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  599.  
  600. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  601.  
  602. {block:Audio}
  603. <div id="audio">
  604. {block:TrackName}
  605. <div id="musicinfo" style="margin-top: 5px;">
  606. {AudioPlayerGrey} <br>
  607. {TrackName} by
  608. {/block:TrackName}
  609. {block:Artist}
  610. {Artist}
  611. {/block:Artist}
  612.  
  613. </div>
  614. </div>
  615. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  616. {/block:Audio}
  617.  
  618.  
  619. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  620.  
  621. {block:Answer}
  622. <div id="ask">
  623. <center>
  624. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; box-shadow: 3px 3px 5px #000; margin-bottom: 6px;"></center>
  625. {Asker} asked,<br>
  626. {Question}
  627. </div>
  628. {Answer}{/block:Answer}
  629.  
  630. <div id="info">
  631. <a title="{TimeAgo}" title="{TimeAgo}">★️</a> <a href="{Permalink}" title="{NoteCount} notes">★️</a> <a href="{ReblogURL}" title="reblog">★️</a>
  632. <div id="tags">
  633. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  634. {/block:Tags}{/block:HasTags}
  635. </div>
  636. </div>
  637.  
  638.  
  639. </div>
  640. {block:PostNotes}<Div style="width: 400px;">
  641.  
  642.  
  643. {PostNotes}</div>{/block:PostNotes}
  644. {/block:Posts}</div>
  645.  
  646.  
  647. <div id="credit">
  648. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  649. </div>
  650.  
  651. <div id="askme" class="popup_block">
  652. <div id="poph1">ask</div>
  653. <iframe frameborder="0"
  654. height="190"
  655. id="ask_form"
  656. scrolling="no"
  657. src="https://www.tumblr.com/ask_form/klarazy.tumblr.com"
  658. width="400">
  659. </iframe>
  660. </div>
  661.  
  662. <div id="pop1" class="popup_block">
  663.  
  664. <img src="https://i.imgur.com/R72P60Q.gif" style="margin-bottom: 10px;">
  665.  
  666. <div style="height: 350px; overflow: auto;">
  667. <div id="poph1">cupcake ipsum</div>
  668. 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.
  669.  
  670. <div id="poph1">cupcake ipsum</div>
  671. 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.
  672.  
  673. <div id="poph1">cupcake ipsum</div>
  674. 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.
  675. <!--insert pop-up content html here for pop1
  676.  
  677. <div id="poph1">poph1</div> is the code for the special mini headers!!
  678. -->
  679. </div>
  680. </div>
  681.  
  682. <div id="pop2" class="popup_block">
  683.  
  684. <img src="https://i.imgur.com/R72P60Q.gif" style="margin-bottom: 10px;">
  685.  
  686. <div style="height: 350px; overflow: auto;">
  687.  
  688. <!--insert pop-up content html here for pop2
  689.  
  690. <div id="poph1">poph1</div> is the code for the special mini headers!!
  691. -->
  692.  
  693. <div id="poph1">cupcake ipsum</div>
  694. 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.
  695.  
  696. <div id="poph1">cupcake ipsum</div>
  697. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  698.  
  699. <div id="poph1">cupcake ipsum</div>
  700. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  701.  
  702. </div>
  703. </div>
  704.  
  705. <div id="pop3" class="popup_block">
  706.  
  707. <img src="https://i.imgur.com/R72P60Q.gif" style="margin-bottom: 10px;">
  708.  
  709. <div style="height: 350px; overflow: auto;">
  710. <!--insert pop-up content html here for pop3
  711.  
  712. <div id="poph1">poph1</div> is the code for the special mini headers!!
  713. -->
  714.  
  715. <div id="poph1">cupcake ipsum</div>
  716. 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.
  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>
  725. </div>
  726.  
  727.  
  728. <div id="pop4" class="popup_block">
  729.  
  730. <img src="https://i.imgur.com/R72P60Q.gif" style="margin-bottom: 10px;">
  731.  
  732. <div style="height: 350px; overflow: auto;">
  733. <!--insert pop-up content html here for pop3
  734.  
  735. <div id="poph1">poph1</div> is the code for the special mini headers!!
  736. -->
  737.  
  738. <div id="poplinks"><A href="/">link title</A></div>
  739. <div id="poplinks"><A href="/">link title</A></div>
  740. <div id="poplinks"><A href="/">link title</A></div>
  741. <div id="poplinks"><A href="/">link title</A></div>
  742. <div id="poplinks"><A href="/">link title</A></div>
  743. <div id="poplinks"><A href="/">link title</A></div>
  744. <div id="poplinks"><A href="/">link title</A></div>
  745. <div id="poplinks"><A href="/">link title</A></div>
  746. <div id="poplinks"><A href="/">link title</A></div>
  747. <div id="poplinks"><A href="/">link title</A></div>
  748. <div id="poplinks"><A href="/">link title</A></div>
  749. <div id="poplinks"><A href="/">link title</A></div>
  750. <div id="poplinks"><A href="/">link title</A></div>
  751. <div id="poplinks"><A href="/">link title</A></div>
  752.  
  753.  
  754. </div>
  755. </div>
  756.  
  757.  
  758.  
  759. </body>
  760.  
  761.  
  762.  
  763. </html>
Advertisement
Add Comment
Please, Sign In to add comment