alicescreed

flamestouch

May 27th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.20 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head>
  6. <title>{Title}</title>
  7.  
  8.  
  9. <!-- please do not steal, redistribute, or claim as your own. KEEP CREDIT IN TACT. thank you! -->
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />
  13.  
  14. {/block:Description}
  15.  
  16. <meta name="color:text" content="#ffffff">
  17. <meta name="color:scrollbar" content="#ad1010">
  18. <meta name="color:bold" content="#ad1010">
  19. <meta name="color:italic" content="#8f6db8">
  20. <meta name="color:links" content="#b6a99c">
  21. <meta name="color:borders" content="#ad1010">
  22. <meta name="color:hover link" content="#b6a99c">
  23.  
  24. <meta name="text:pop1 link title" content="link1">
  25. <meta name="text:pop2 link title" content="link2">
  26. <meta name="text:pop3 link title" content="link3">
  27. <meta name="text:pop4 link title" content="link4">
  28. <meta name="text:pop5 link title" content="link5">
  29.  
  30. <link href="https://fonts.googleapis.com/css2?family=Jost&family=ZCOOL+XiaoWei&display=swap" rel="stylesheet">
  31.  
  32. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  33. <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  34. <script>
  35. (function($){
  36. $(document).ready(function(){
  37. $("[title]").style_my_tooltips({
  38. tip_follows_cursor:true,
  39. tip_delay_time:200,
  40. tip_fade_speed:300
  41. }
  42. );
  43. });
  44. })(jQuery);
  45. </script>
  46.  
  47. <script type="text/javascript"
  48. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  49. <script>
  50. $(document).ready(function() {
  51. //
  52. $('a.poplight[href^=#]').click(function() {
  53. var popID = $(this).attr('rel'); //Get Popup Name
  54. var popURL = $(this).attr('href'); //Get Popup href to define size
  55. var query= popURL.split('?');
  56. var dim= query[1].split('&');
  57. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  58. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  59. var popMargTop = ($('#' + popID).height() + 80) / 2;
  60. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  61. //Apply Margin to Popup
  62. $('#' + popID).css({
  63. 'margin-top' : -popMargTop,
  64. 'margin-left' : -popMargLeft
  65. });
  66. $('body').append('<div id="fade"></div>');
  67. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  68. return false;
  69. });
  70. $('a.close, #fade').live('click', function() {
  71. $('#fade , .popup_block').fadeOut(function() {
  72. $('#fade, a.close').remove(); //fade them both out
  73. });
  74. return false;
  75. });
  76. });
  77. </script>
  78.  
  79.  
  80. <style type="text/css">
  81.  
  82.  
  83. body {
  84. font-family: 'Jost', sans-serif;
  85. color: {color:text};
  86. font-size: 9pt;
  87. letter-spacing: 0px;
  88. background-color:#121212;
  89. background-image: url('https://i.imgur.com/BO5tPGJ.png');
  90. background-position: top-right;
  91. background-repeat: no-repeat;
  92. background-attachment: fixed;
  93. line-height: 12pt;
  94. text-align: justify;
  95. }
  96.  
  97. #s-m-t-tooltip{
  98. position: absolute;
  99. z-index: 999999999999999999999999999999999999999999999999999999999999;
  100. margin-top: 10px;
  101. margin-left: 5px;
  102. display: block;
  103. color: #fff;
  104. background-image: url('https://i.imgur.com/LUAIBDf.gif');
  105. background-attachment: fixed;
  106. background-repeat: repeat;
  107. background-position: center;
  108. text-align: center;
  109. font-style: italic;
  110. box-shadow: 2px 2px 5px #000;
  111. font-family: 'ZCOOL XiaoWei', serif;
  112. letter-spacing: 1px;
  113. text-shadow: 1px 1px 5px black;
  114. border: 4px double {color:borders};
  115. padding: 10px;
  116. font-size: 22pt;
  117. margin-bottom: 5px;
  118. }
  119.  
  120. ::-webkit-scrollbar-thumb:vertical {
  121. background-color: {color:scrollbar};
  122. height:auto;
  123. }
  124.  
  125. ::-webkit-scrollbar-thumb:horizontal {
  126. background-color: {color:scrollbar};
  127. height:2px;
  128. }
  129.  
  130. ::-webkit-scrollbar {
  131. height:2px;
  132. width:2px;
  133. background-color: transparent;
  134. }
  135.  
  136.  
  137. a {
  138. text-decoration: none;
  139. color: {color:links};
  140. font-size: 24pt;
  141. line-height: 19pt;
  142. transition-duration: 0.6s;
  143. -moz-transition-duration: 0.6s;
  144. -webkit-transition-duration: 0.6s;
  145. -o-transition-duration: 0.6s;
  146. font-family: 'ZCOOL XiaoWei', serif;
  147. font-weight: bold;
  148. letter-spacing: 1px;
  149. text-shadow: 1px 1px 3px black;
  150. }
  151.  
  152.  
  153. a:hover {
  154. text-decoration: none;
  155. letter-spacing: 1px;
  156. filter:blur(2px);
  157. color: {color:hover link};
  158. transition-duration: 0.6s;
  159. -moz-transition-duration: 0.6s;
  160. -webkit-transition-duration: 0.6s;
  161. -o-transition-duration: 0.6s;
  162. }
  163.  
  164. small, sup, sub {
  165. font-size: 100%;
  166. }
  167.  
  168. b, strong {
  169. text-shadow: 1px 1px 4px black;
  170. padding-left: 2px;
  171. padding-right: 2px;
  172. color:{color:bold};
  173. letter-spacing: 0px;
  174. font-size: 16pt;
  175. font-family: 'ZCOOL XiaoWei', serif;
  176. }
  177.  
  178. i, em {
  179. text-shadow: 1px 1px 4px black;
  180. color:{color:italic};
  181. font-weight: bold;
  182. font-style: italic;
  183. font-family: 'ZCOOL XiaoWei', serif;
  184. letter-spacing: 1px;
  185. padding-left:5px;
  186. padding-right: 5px;
  187. padding-top: 10px;
  188. padding-bottom: 10px;
  189. font-size: 24pt;
  190. }
  191.  
  192.  
  193.  
  194.  
  195. h2 {
  196. text-shadow: 1px 1px 5px black;
  197. color: #fff;
  198. font-family: 'ZCOOL XiaoWei', serif;
  199. font-size: 16pt;
  200. font-weight: bold;
  201. line-height: 120%;
  202. letter-spacing: 1px;
  203. }
  204.  
  205.  
  206. #info {
  207. padding: 10px;
  208. margin-top: 10px;
  209. background-image: url('https://i.imgur.com/LUAIBDf.gif');
  210. background-repeat: repeat;
  211. background-attachment: fixed;
  212. text-align: center;
  213. color: #fff;
  214. letter-spacing: 1px;
  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: 4px double {color:borders};
  222. }
  223.  
  224. #info a {
  225. font-size: 14pt;
  226. color: {Color:bold};
  227. text-shadow: 1px 1px 3px #000;
  228. font-weight:bold;
  229. }
  230.  
  231. #h1 {
  232. text-align: center;
  233. color: #fff;
  234. font-family: 'ZCOOL XiaoWei', serif;
  235. padding: 10px;
  236. text-shadow: 1px 1px 4px #000;
  237. line-height: 110%;
  238. font-size: 18pt;
  239. background-position: center;
  240. margin-bottom: 5px;
  241. }
  242.  
  243. #sidebar {
  244. margin-left:332px;
  245. width: 110px;
  246. font-size: 10pt;
  247. margin-top: 365px;
  248. position: fixed;
  249. background-color: transparent;
  250. }
  251.  
  252. #description {
  253. height:157px;
  254. font-size: 10px;
  255. line-height: 14px;
  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: 10px dashed transparent;
  275. border-image:url('https://i.imgur.com/LUAIBDf.gif') 10 round;
  276. outline: 4px double {color:borders};
  277. background-color: #1e1e1e;
  278. padding: 5px;
  279. font-size: 95%
  280. }
  281.  
  282. blockquote img {
  283. max-width: 100%;
  284. display: block;
  285. height: auto
  286. }
  287.  
  288. img {
  289. max-width: 100%;
  290. display: block;
  291. height: auto
  292. }
  293.  
  294.  
  295. ol.notes {
  296. text-align: left;
  297. list-style: upper-roman;
  298. padding: 10px;
  299.  
  300. }
  301.  
  302.  
  303. #info a:hover {
  304. color: {color:bold};
  305. }
  306.  
  307. #credit {
  308. right:10px;
  309. bottom:7px;
  310. padding:5px;
  311. font-size:10px;
  312. position:fixed;
  313. background-image: url('https://i.imgur.com/LUAIBDf.gif');
  314. text-align: center;
  315. font-style: italic;
  316. font-family: 'ZCOOL XiaoWei', serif;
  317. letter-spacing: 1px;
  318. border: 1px {color:borders};
  319. border-style: dashed;
  320. padding: 5px;
  321. font-size: 120%;
  322. margin-bottom: 5px;
  323. transition-duration: 0.6s;
  324. -moz-transition-duration: 0.6s;
  325. -webkit-transition-duration: 0.6s;
  326. -o-transition-duration: 0.6s;
  327. }
  328.  
  329.  
  330. #credit a {
  331. font-family: 'ZCOOL XiaoWei', serif;
  332. color:#fff;
  333. padding:5px;
  334. letter-spacing:1px;
  335. text-decoration:none;
  336. font-weight:bold;
  337. }
  338.  
  339. #tags a {
  340. font-family: verdana;
  341. font-weight: bold;
  342. font-size: 8px;
  343. line-height: 6px;
  344. color: #fff;
  345. text-transform: uppercase;
  346. text-shadow: 1px 1px 1px #000;
  347. }
  348.  
  349. #post {
  350. width: 400px;
  351. margin-bottom: 25px;
  352. }
  353.  
  354. #posts {
  355. width: 400px;
  356. padding-right: 15px;
  357. height:530px;
  358. overflow-y: auto;
  359. margin-top: 50px;
  360. position: absolute;
  361. background-color: transparent;
  362. margin-left:500px;
  363. }
  364.  
  365. #ask a {
  366. font-size:20pt;
  367. }
  368.  
  369. #ask {
  370. background-image: url('https://i.imgur.com/LUAIBDf.gif');
  371. background-repeat: repeat;
  372. text-align: center;
  373. color: #fff;
  374. padding: 10px;
  375. height: auto;
  376. border: 4px double {color:borders};
  377. background-color: #040404;
  378. text-shadow: 1px 1px 2px #000;
  379. }
  380.  
  381. #pa { margin-top: 20px;
  382. text-align: center;
  383. }
  384.  
  385. #pa a {
  386. text-shadow: 1px 1px 5px black;
  387. color: #fff;
  388. font-family: 'ZCOOL XiaoWei', serif;
  389. text-transform: uppercase;
  390. font-size: 15pt;
  391. }
  392.  
  393. #links {
  394. position: fixed;
  395. text-align: left;
  396. margin-top: 20px;
  397. width: 400px;
  398. line-height: 14pt;
  399. transition-duration: 0.6s;
  400. -moz-transition-duration: 0.6s;
  401. -webkit-transition-duration: 0.6s;
  402. -o-transition-duration: 0.6s;
  403. }
  404.  
  405. #links a {
  406. font-weight: bold;
  407. filter:blur(0px);
  408. animation: spin 6s;
  409. animation-direction: alternate;
  410. animation-iteration-count: infinite;
  411. transition-duration: 1s;
  412. -moz-transition-duration: 1s;
  413. -webkit-transition-duration:1s;
  414. -o-transition-duration: 1s;
  415. text-shadow: 2px 2px 4px #000;
  416. font-size: 24pt;
  417. color: #fff;
  418. line-height: 16pt;
  419. font-family: 'Jost', sans-serif;
  420. }
  421.  
  422. @keyframes spin {
  423. from {transform:rotate(0deg);}
  424. to {transform:rotate(360deg);}
  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: 4px double {color:borders};
  444. text-align: center;
  445. background-position: center;
  446. background-image: url('https://i.imgur.com/LUAIBDf.gif');
  447. }
  448.  
  449. #fade {
  450. display: none;
  451. background: #121212;
  452. background-position: top left;
  453. background-attachment: fixed;
  454. background-repeat: no-repeat;
  455. background-image: url('https://i.imgur.com/SqmOf2J.png');
  456. position: fixed;
  457. left: 0;
  458. top: 0;
  459. width: 100%;
  460. height: 100%;
  461. opacity: 1;
  462. z-index: 9999;
  463. }
  464.  
  465. .popup_block{
  466. display: none;
  467. padding: 20px;
  468. position: fixed;
  469. top: 50%;
  470. left: 30%;
  471. z-index: 99999;
  472. background-color: #1e1e1e;
  473. border: 20px solid transparent;
  474. border-image:url('https://i.imgur.com/LUAIBDf.gif') 30 round;
  475. outline: 4px double {color:borders};
  476. box-shadow: 2px 2px 5px #000;
  477. }
  478.  
  479. img.btn_close {
  480. float: right;
  481. margin: -55px -55px 0 0;
  482. }
  483.  
  484. *html #fade {
  485. position: absolute;
  486. }
  487.  
  488. *html .popup_block {
  489. position: absolute;
  490. }
  491.  
  492.  
  493. #poplinks {
  494.  
  495. color: #fff;
  496. background-position: left;
  497. text-shadow: 1px 1px 3px #000;
  498. background-image: url('https://i.imgur.com/LUAIBDf.gif');
  499. background-attachment:fixed;
  500. background-repeat: repeat;
  501. background-position: top right;
  502. background-repeat:repeat;
  503. text-align: center;
  504. font-family: verdana;
  505. border: 4px double {color:borders};
  506. padding: 2px;
  507. font-size: 8pt;
  508. font-weight: bold;
  509. text-transform: uppercase;
  510. margin-bottom: 5px;
  511. margin-top: 5px;
  512.  
  513. }
  514.  
  515. #poplinks a {
  516. text-align: center;
  517. font-family: verdana;
  518. font-size: 8pt;
  519. font-weight: bold;
  520. text-transform: uppercase;
  521. text-shadow: 1px 1px 3px #000;
  522. color: #fff;
  523. }
  524.  
  525. #poph1 {
  526.  
  527. color: #fff;
  528. background-position: center;
  529. text-shadow: 1px 1px 3px #000;
  530. background-image: url('https://i.imgur.com/LUAIBDf.gif');
  531. background-attachment:fixed;
  532. background-repeat: repeat;
  533. background-repeat:repeat;
  534. text-align: center;
  535. font-family: verdana;
  536. border: 4px double {color:borders};
  537. padding: 5px;
  538. font-size: 8pt;
  539. font-weight: bold;
  540. text-transform: uppercase;
  541. margin-bottom: 10px;
  542. margin-top: 5px;
  543. }
  544.  
  545. #left {
  546. float:left;
  547. margin-right: 10px;
  548. height: 450px;
  549. width: 200px;
  550. }
  551.  
  552. #name {
  553. font-family: 'ZCOOL XiaoWei', serif;
  554. color: {color:links};
  555. text-shadow: 1px 1px 2px #000;
  556. font-size: 24pt;
  557. line-height: 30pt;
  558. text-align: left;
  559. margin-top: 5px;
  560. }
  561.  
  562. #muselinks {
  563. height: 150px;
  564. overflow: auto;
  565. padding-right: 5px;
  566. }
  567.  
  568. #subtitle {
  569. font-size: 10px;
  570. text-align: center;
  571. text-transform: uppercase;
  572. }
  573.  
  574. </style>
  575.  
  576. </head>
  577.  
  578. <body>
  579.  
  580. <div id="links">
  581. <a href="/" title="return" style="position: fixed; margin-top: 20px; margin-left: 170px;"><img src="https://i.imgur.com/4G0E9gQ.png" width="60"></a><br>
  582. <a href="#?w=400" rel="askme" class="poplight" title="message" style="position: fixed; margin-top: 80px; margin-left: 120px;"><img src="https://i.imgur.com/4G0E9gQ.png" width="60"></a><br>
  583. <a href="#?w=400" rel="pop1" class="poplight" title="{text:pop1 link title}" style="position: fixed; margin-top: 120px; margin-left: 40px;"><img src="https://i.imgur.com/4G0E9gQ.png" width="60"></a><br>
  584. <a href="#?w=400" rel="pop2" class="poplight" title="{text:pop2 link title}" style="position: fixed; margin-top: 450px; margin-left: 180px;"><img src="https://i.imgur.com/4G0E9gQ.png" width="60"></a><br>
  585. <a href="#?w=400" rel="pop3" class="poplight" title="{text:pop3 link title}" style="position: fixed; margin-top: 390px; margin-left: 260px;"><img src="https://i.imgur.com/4G0E9gQ.png" width="60"></a><br>
  586. <a href="#?w=400" rel="pop4" class="poplight" title="{text:pop4 link title}" style="position: fixed; margin-top: -60px; margin-left: 1030px;"><img src="https://i.imgur.com/4G0E9gQ.png" width="60"></a><br>
  587. <a href="#?w=400" rel="pop5" class="poplight" title="{text:pop5 link title}" style="position: fixed; margin-top: -20px; margin-left: 1120px;"><img src="https://i.imgur.com/4G0E9gQ.png" width="60"></a><br>
  588. </div>
  589.  
  590.  
  591. <div id="sidebar">
  592. <div id="desctitle" style="margin-bottom: 5px;">{title}</div>
  593. <div id="description">
  594. {Description}
  595. </div>
  596. <div id="pa">{block:Pagination}
  597. {block:PreviousPage}
  598. <a href="{PreviousPage}">fall</a> /
  599. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  600. {/block:NextPage}
  601. {/block:Pagination}</div>
  602. </div>
  603.  
  604. <div id="posts">
  605.  
  606.  
  607. {block:Posts}<div id="post">
  608.  
  609.  
  610.  
  611. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  612.  
  613. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  614.  
  615. {Caption} {/block:Caption}{/block:Photo}
  616.  
  617. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  618.  
  619. {/block:Photoset}
  620.  
  621. {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}
  622.  
  623. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  624.  
  625. {Description}{/block:Description}{/block:Link}
  626.  
  627. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  628.  
  629. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  630.  
  631. {block:Audio}
  632. <div id="audio">
  633. {block:TrackName}
  634. <div id="musicinfo" style="margin-top: 5px;">
  635. {AudioPlayerGrey} <br>
  636. {TrackName} by
  637. {/block:TrackName}
  638. {block:Artist}
  639. {Artist}
  640. {/block:Artist}
  641.  
  642. </div>
  643. </div>
  644. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  645. {/block:Audio}
  646.  
  647.  
  648. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  649.  
  650. {block:Answer}
  651. <div id="ask">
  652. <center>
  653. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; box-shadow: 3px 3px 5px #000; margin-bottom: 6px;"></center>
  654. {Asker} asked,<br>
  655. {Question}
  656. </div>
  657. {Answer}{/block:Answer}
  658.  
  659. <div id="info">
  660. <a title="{TimeAgo}" title="{TimeAgo}">{timeago}</a> || <a href="{Permalink}" title="{NoteCount} notes">{notecount}</a> || <a href="{ReblogURL}" title="reblog">reblog</a>
  661. <div id="tags">
  662. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  663. {/block:Tags}{/block:HasTags}
  664. </div>
  665. </div>
  666.  
  667.  
  668. </div>
  669. {block:PostNotes}<Div style="width: 400px;">
  670.  
  671.  
  672. {PostNotes}</div>{/block:PostNotes}
  673. {/block:Posts}</div>
  674.  
  675.  
  676. <div id="credit">
  677. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  678. </div>
  679.  
  680.  
  681. <div id="askme" class="popup_block">
  682. <div id="poph1">ask</div>
  683. <iframe frameborder="0"
  684. height="190"
  685. id="ask_form"
  686. scrolling="no"
  687. src="https://www.tumblr.com/ask_form/isolatedgod.tumblr.com"
  688. width="400">
  689. </iframe>
  690. </div>
  691.  
  692. <div id="pop1" class="popup_block">
  693.  
  694. <div style="height: 450px; overflow: auto; padding-right: 10px;">
  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.  
  701. <div id="poph1">cupcake ipsum</div>
  702. 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.
  703. <!--insert pop-up content html here for pop1
  704.  
  705. <div id="poph1">poph1</div> is the code for the special mini headers!!
  706. -->
  707. </div>
  708. </div>
  709.  
  710. <div id="pop2" class="popup_block">
  711.  
  712. <div style="height: 450px; overflow: auto; padding-right: 10px;">
  713.  
  714. <!--insert pop-up content html here for pop2
  715.  
  716. <div id="poph1">poph1</div> is the code for the special mini headers!!
  717. -->
  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.  
  725. <div id="poph1">cupcake ipsum</div>
  726. 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.
  727.  
  728. </div>
  729. </div>
  730.  
  731. <div id="pop3" class="popup_block">
  732.  
  733. <div style="height: 450px; overflow: auto; padding-right: 10px;">
  734. <!--insert pop-up content html here for pop3
  735.  
  736. <div id="poph1">poph1</div> is the code for the special mini headers!!
  737. -->
  738.  
  739. <div id="poph1">cupcake ipsum</div>
  740. 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.
  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>
  749. </div>
  750.  
  751. <div id="pop4" class="popup_block">
  752.  
  753. <div style="height: 450px; overflow: auto; padding-right: 10px;">
  754. <!--insert pop-up content html here for pop3
  755.  
  756. <div id="poph1">poph1</div> is the code for the special mini headers!!
  757. -->
  758.  
  759. <div id="poph1">cupcake ipsum</div>
  760. 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.
  761.  
  762. <div id="poph1">cupcake ipsum</div>
  763. 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.
  764.  
  765. <div id="poph1">cupcake ipsum</div>
  766. 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.
  767.  
  768. </div>
  769. </div>
  770.  
  771.  
  772. <div id="pop5" class="popup_block">
  773.  
  774.  
  775. <div style="height: 450px; overflow: auto; padding-right: 10px;">
  776. <!--insert pop-up content html here for pop3
  777.  
  778. <div id="poph1">poph1</div> is the code for the special mini headers!!
  779. -->
  780.  
  781. <div id="poplinks"><A href="/">link title</A></div>
  782. <div id="poplinks"><A href="/">link title</A></div>
  783. <div id="poplinks"><A href="/">link title</A></div>
  784. <div id="poplinks"><A href="/">link title</A></div>
  785. <div id="poplinks"><A href="/">link title</A></div>
  786. <div id="poplinks"><A href="/">link title</A></div>
  787. <div id="poplinks"><A href="/">link title</A></div>
  788. <div id="poplinks"><A href="/">link title</A></div>
  789. <div id="poplinks"><A href="/">link title</A></div>
  790. <div id="poplinks"><A href="/">link title</A></div>
  791. <div id="poplinks"><A href="/">link title</A></div>
  792. <div id="poplinks"><A href="/">link title</A></div>
  793. <div id="poplinks"><A href="/">link title</A></div>
  794. <div id="poplinks"><A href="/">link title</A></div>
  795.  
  796.  
  797. </div>
  798. </div>
  799.  
  800.  
  801.  
  802. </body>
  803.  
  804.  
  805.  
  806. </html>
Advertisement
Add Comment
Please, Sign In to add comment