alicescreed

heartmoving

May 19th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.83 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="#e9edeb">
  17. <meta name="color:scrollbar" content="#9fb3b7">
  18. <meta name="color:bold" content="#e72c6c">
  19. <meta name="color:italic" content="#7c4d5b">
  20. <meta name="color:links" content="#3939b8">
  21. <meta name="color:borders" content="#9fb3b7">
  22. <meta name="color:hover link" content="#ffffff">
  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=Abhaya+Libre&family=Bebas+Neue&family=Dancing+Script:wght@700&family=Parisienne&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: 'Abhaya Libre', serif;
  85. color: {color:text};
  86. font-size: 9pt;
  87. letter-spacing: 0px;
  88. background-color:#34262a;
  89. background-image: url('https://i.imgur.com/RjPV5lw.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/nQqzTSL.png');
  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: 'Bebas Neue', cursive;
  112. letter-spacing: 1px;
  113. text-shadow: 1px 1px 5px #000;
  114. border: 1px dashed {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: 20pt;
  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: 'dancing script', cursive;
  147. font-weight: bold;
  148. letter-spacing: 1px;
  149. text-shadow: 1px 1px 3px #91bab1;
  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 #000;
  170. padding-left: 2px;
  171. padding-right: 2px;
  172. color:{color:bold};
  173. letter-spacing: 0px;
  174. font-size: 16pt;
  175. font-family: 'Bebas Neue', cursive;
  176. }
  177.  
  178. i, em {
  179. text-shadow: 1px 1px 4px #91bab1;
  180. color:{color:italic};
  181. font-family: 'dancing script', cursive;
  182. letter-spacing: 1px;
  183. padding-left:5px;
  184. padding-right: 5px;
  185. padding-top: 10px;
  186. padding-bottom: 10px;
  187. font-size: 22pt;
  188. }
  189.  
  190.  
  191.  
  192.  
  193. h2 {
  194. text-shadow: 1px 1px 5px #000;
  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. padding: 10px;
  206. margin-top: 10px;
  207. background-image: url('https://i.imgur.com/nQqzTSL.png');
  208. background-repeat: repeat;
  209. background-attachment: fixed;
  210. text-align: center;
  211. color: #fff;
  212. letter-spacing: 1px;
  213. text-shadow: 1px 1px #000;
  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:14pt;
  219. border: 1px dashed {color:borders};
  220. }
  221.  
  222. #info a {
  223. font-size: 24pt;
  224. color: {Color:bold};
  225. text-shadow: 1px 1px 3px #000;
  226. font-weight:bold;
  227. }
  228.  
  229. #h1 {
  230. text-align: center;
  231. color: #fff;
  232. font-family: 'Bebas Neue', cursive;
  233. padding: 10px;
  234. text-shadow: 1px 1px 4px #000;
  235. line-height: 110%;
  236. font-size: 18pt;
  237. background-position: center;
  238. margin-bottom: 5px;
  239. }
  240.  
  241. #sidebar {
  242. margin-left:490px;
  243. width: 110px;
  244. font-size: 10pt;
  245. margin-top: 360px;
  246. position: fixed;
  247. background-color: transparent;
  248. }
  249.  
  250. #description {
  251. height:160px;
  252. font-size: 10px;
  253. line-height: 14px;
  254. padding-right: 5px;
  255. overflow: auto;
  256. }
  257.  
  258. #audio {
  259. text-align: center;
  260. font-size: 8pt;
  261. line-height: 9pt;
  262. }
  263.  
  264.  
  265. #musicinfo {
  266.  
  267. text-transform: uppercase;
  268. margin-top:10px;
  269. }
  270.  
  271. blockquote {
  272. border: 10px dashed transparent;
  273. border-image:url('https://i.imgur.com/nQqzTSL.png') 10 round;
  274. outline: 1px dashed {color:borders};
  275. background-color: #9fb3b7;
  276. color: #181818;
  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-image: url('https://i.imgur.com/nQqzTSL.png');
  313. text-align: center;
  314. font-style: italic;
  315. font-family: 'Bebas Neue', 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: 'Bebas Neue', 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: 500px;
  350. margin-bottom: 25px;
  351. }
  352.  
  353. #posts {
  354. width: 500px;
  355. padding-right: 15px;
  356. height: 440px;
  357. overflow-y: auto;
  358. margin-top: 165px;
  359. position: absolute;
  360. background-color: transparent;
  361. margin-left:660px;
  362. }
  363.  
  364. #ask a {
  365. font-size:20pt;
  366. }
  367.  
  368. #ask {
  369. background-image: url('https://i.imgur.com/nQqzTSL.png');
  370. background-repeat: repeat;
  371. text-align: center;
  372. color: #fff;
  373. padding: 10px;
  374. height: auto;
  375. border: 1px dashed {color:borders};
  376. background-color: #040404;
  377. text-shadow: 1px 1px 2px #000;
  378. }
  379.  
  380. #pa { margin-top: 20px;
  381. text-align: center;
  382. }
  383.  
  384. #pa a {
  385. text-shadow: 1px 1px 5px #000;
  386. color: #fff;
  387. font-family: 'Bebas Neue', cursive;
  388. text-transform: uppercase;
  389. font-size: 15pt;
  390. }
  391.  
  392. #links {
  393. position: fixed;
  394. text-align: left;
  395. margin-top: 20px;
  396. width: 500px;
  397. line-height: 14pt;
  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. #links a {
  405. font-weight: bold;
  406. filter:blur(0px);
  407. transition-duration: 0.6s;
  408. -moz-transition-duration: 0.6s;
  409. -webkit-transition-duration: 0.6s;
  410. -o-transition-duration: 0.6s;
  411. text-shadow: 2px 2px 4px #000;
  412. font-size: 40pt;
  413. color: #fff;
  414. line-height: 16pt;
  415. font-family: 'Abhaya Libre', serif;
  416. }
  417.  
  418. #links a:hover {
  419. font-size: 20pt;
  420. filter:blur(3px); transition-duration: 0.6s;
  421. -moz-transition-duration: 0.6s;
  422. -webkit-transition-duration: 0.6s;
  423. -o-transition-duration: 0.6s;
  424.  
  425. }
  426.  
  427. #desctitle {
  428. padding: 4px;
  429. font-family: verdana;
  430. text-transform: uppercase;
  431. font-size: 8px;
  432. text-shadow: 1px 1px 3px #000;
  433. color: #fff;
  434. font-weight: bold;
  435. border: 1px dashed {color:borders};
  436. text-align: center;
  437. background-position: center;
  438. background-image: url('https://i.imgur.com/nQqzTSL.png');
  439. }
  440.  
  441. #fade {
  442. display: none;
  443. background: #34262a;
  444. background-position: top left;
  445. background-attachment: fixed;
  446. background-repeat: no-repeat;
  447. background-image: url('https://i.imgur.com/ngnEVwY.png');
  448. position: fixed;
  449. left: 0;
  450. top: 0;
  451. width: 100%;
  452. height: 100%;
  453. opacity: 1;
  454. z-index: 9999;
  455. }
  456.  
  457. .popup_block{
  458. display: none;
  459. padding: 20px;
  460. position: fixed;
  461. top: 50%;
  462. left: 30%;
  463. z-index: 99999;
  464. background-color: #328694;
  465. border: 20px solid transparent;
  466. border-image:url('https://i.imgur.com/nQqzTSL.png') 30 round;
  467. outline: 1px dashed {color:borders};
  468. box-shadow: 2px 2px 5px #000;
  469. }
  470.  
  471. img.btn_close {
  472. float: right;
  473. margin: -55px -55px 0 0;
  474. }
  475.  
  476. *html #fade {
  477. position: absolute;
  478. }
  479.  
  480. *html .popup_block {
  481. position: absolute;
  482. }
  483.  
  484.  
  485. #poplinks {
  486.  
  487. color: #fff;
  488. background-position: left;
  489. text-shadow: 1px 1px 3px #000;
  490. background-image: url('https://i.imgur.com/nQqzTSL.png');
  491. background-attachment:fixed;
  492. background-repeat: repeat;
  493. background-position: top right;
  494. background-repeat:repeat;
  495. text-align: center;
  496. font-family: verdana;
  497. border: 1px dashed {color:borders};
  498. padding: 2px;
  499. font-size: 8pt;
  500. font-weight: bold;
  501. text-transform: uppercase;
  502. margin-bottom: 5px;
  503. margin-top: 5px;
  504.  
  505. }
  506.  
  507. #poplinks a {
  508. text-align: center;
  509. font-family: verdana;
  510. font-size: 8pt;
  511. font-weight: bold;
  512. text-transform: uppercase;
  513. text-shadow: 1px 1px 3px #000;
  514. color: #fff;
  515. }
  516.  
  517. #poph1 {
  518.  
  519. color: #fff;
  520. background-position: center;
  521. text-shadow: 1px 1px 3px #000;
  522. background-image: url('https://i.imgur.com/nQqzTSL.png');
  523. background-attachment:fixed;
  524. background-repeat: repeat;
  525. background-repeat:repeat;
  526. text-align: center;
  527. font-family: verdana;
  528. border: 1px dashed {color:borders};
  529. padding: 5px;
  530. font-size: 8pt;
  531. font-weight: bold;
  532. text-transform: uppercase;
  533. margin-bottom: 10px;
  534. }
  535.  
  536. #left {
  537. float:left;
  538. margin-right: 10px;
  539. height: 450px;
  540. width: 200px;
  541. }
  542.  
  543. #name {
  544. font-family: 'Bebas Neue', cursive;
  545. color: {color:links};
  546. text-shadow: 1px 1px 2px #000;
  547. font-size: 24pt;
  548. line-height: 30pt;
  549. text-align: left;
  550. margin-top: 5px;
  551. }
  552.  
  553. #muselinks {
  554. height: 150px;
  555. overflow: auto;
  556. padding-right: 5px;
  557. }
  558.  
  559. #subtitle {
  560. font-size: 10px;
  561. text-align: center;
  562. text-transform: uppercase;
  563. }
  564.  
  565. </style>
  566.  
  567. </head>
  568.  
  569. <body>
  570.  
  571. <div id="links">
  572. <a href="/" title="return" style="position: fixed; margin-top: 50px; margin-left: 400px;">✴</a><br>
  573. <a href="#?w=400" rel="askme" class="poplight" title="message" style="position: fixed; margin-top: 130px; margin-left: 520px;">✴</a><br>
  574. <a href="#?w=400" rel="pop1" class="poplight" title="{text:pop1 link title}" style="position: fixed; margin-top: 280px; margin-left: 330px;">✴</a><br>
  575. <a href="#?w=400" rel="pop2" class="poplight" title="{text:pop2 link title}" style="position: fixed; margin-top: 160px; margin-left: 50px;">✴</a><br>
  576. <a href="#?w=400" rel="pop3" class="poplight" title="{text:pop3 link title}" style="position: fixed; margin-top: 300px; margin-left: 150px;">✴</a><br>
  577. <a href="#?w=400" rel="pop4" class="poplight" title="{text:pop4 link title}" style="position: fixed; margin-top: 400px; margin-left: 380px;">✴</a><br>
  578. </div>
  579.  
  580.  
  581. <div id="sidebar">
  582. <div id="desctitle" style="margin-bottom: 5px;">{title}</div>
  583. <div id="description">
  584. {Description}
  585. </div>
  586. <div id="pa">{block:Pagination}
  587. {block:PreviousPage}
  588. <a href="{PreviousPage}">fall</a> /
  589. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  590. {/block:NextPage}
  591. {/block:Pagination}</div>
  592. </div>
  593.  
  594. <div id="posts">
  595.  
  596.  
  597. {block:Posts}<div id="post">
  598.  
  599.  
  600.  
  601. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  602.  
  603. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  604.  
  605. {Caption} {/block:Caption}{/block:Photo}
  606.  
  607. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}
  608.  
  609. {/block:Photoset}
  610.  
  611. {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}
  612.  
  613. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  614.  
  615. {Description}{/block:Description}{/block:Link}
  616.  
  617. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  618.  
  619. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  620.  
  621. {block:Audio}
  622. <div id="audio">
  623. {block:TrackName}
  624. <div id="musicinfo" style="margin-top: 5px;">
  625. {AudioPlayerGrey} <br>
  626. {TrackName} by
  627. {/block:TrackName}
  628. {block:Artist}
  629. {Artist}
  630. {/block:Artist}
  631.  
  632. </div>
  633. </div>
  634. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  635. {/block:Audio}
  636.  
  637.  
  638. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  639.  
  640. {block:Answer}
  641. <div id="ask">
  642. <center>
  643. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; box-shadow: 3px 3px 5px #000; margin-bottom: 6px;"></center>
  644. {Asker} asked,<br>
  645. {Question}
  646. </div>
  647. {Answer}{/block:Answer}
  648.  
  649. <div id="info">
  650. <a title="{TimeAgo}" title="{TimeAgo}">{timeago}</a> ✴ <a href="{Permalink}" title="{NoteCount} notes">{notecount}</a> ✴ <a href="{ReblogURL}" title="reblog">reblog</a>
  651. <div id="tags">
  652. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  653. {/block:Tags}{/block:HasTags}
  654. </div>
  655. </div>
  656.  
  657.  
  658. </div>
  659. {block:PostNotes}<Div style="width: 500px;">
  660.  
  661.  
  662. {PostNotes}</div>{/block:PostNotes}
  663. {/block:Posts}</div>
  664.  
  665.  
  666. <div id="credit">
  667. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  668. </div>
  669.  
  670.  
  671. <div id="askme" class="popup_block">
  672. <div id="poph1">ask</div>
  673. <iframe frameborder="0"
  674. height="190"
  675. id="ask_form"
  676. scrolling="no"
  677. src="https://www.tumblr.com/ask_form/truedeaths.tumblr.com"
  678. width="500">
  679. </iframe>
  680. </div>
  681.  
  682. <div id="pop1" class="popup_block">
  683.  
  684. <div style="height: 450px; overflow: auto; padding-right: 10px;">
  685. <div id="poph1">cupcake ipsum</div>
  686. 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.
  687.  
  688. <div id="poph1">cupcake ipsum</div>
  689. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  690.  
  691. <div id="poph1">cupcake ipsum</div>
  692. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  693. <!--insert pop-up content html here for pop1
  694.  
  695. <div id="poph1">poph1</div> is the code for the special mini headers!!
  696. -->
  697. </div>
  698. </div>
  699.  
  700. <div id="pop2" class="popup_block">
  701.  
  702. <div style="height: 450px; overflow: auto; padding-right: 10px;">
  703.  
  704. <!--insert pop-up content html here for pop2
  705.  
  706. <div id="poph1">poph1</div> is the code for the special mini headers!!
  707. -->
  708.  
  709. <div id="poph1">cupcake ipsum</div>
  710. 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.
  711.  
  712. <div id="poph1">cupcake ipsum</div>
  713. 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.
  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>
  719. </div>
  720.  
  721. <div id="pop3" class="popup_block">
  722.  
  723. <div style="height: 450px; overflow: auto; padding-right: 10px;">
  724. <!--insert pop-up content html here for pop3
  725.  
  726. <div id="poph1">poph1</div> is the code for the special mini headers!!
  727. -->
  728.  
  729. <div id="poph1">cupcake ipsum</div>
  730. 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.
  731.  
  732. <div id="poph1">cupcake ipsum</div>
  733. 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.
  734.  
  735. <div id="poph1">cupcake ipsum</div>
  736. 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.
  737.  
  738. </div>
  739. </div>
  740.  
  741.  
  742. <div id="pop4" class="popup_block">
  743.  
  744.  
  745. <div style="height: 450px; overflow: auto; padding-right: 10px;">
  746. <!--insert pop-up content html here for pop3
  747.  
  748. <div id="poph1">poph1</div> is the code for the special mini headers!!
  749. -->
  750.  
  751. <div id="poplinks"><A href="/">link title</A></div>
  752. <div id="poplinks"><A href="/">link title</A></div>
  753. <div id="poplinks"><A href="/">link title</A></div>
  754. <div id="poplinks"><A href="/">link title</A></div>
  755. <div id="poplinks"><A href="/">link title</A></div>
  756. <div id="poplinks"><A href="/">link title</A></div>
  757. <div id="poplinks"><A href="/">link title</A></div>
  758. <div id="poplinks"><A href="/">link title</A></div>
  759. <div id="poplinks"><A href="/">link title</A></div>
  760. <div id="poplinks"><A href="/">link title</A></div>
  761. <div id="poplinks"><A href="/">link title</A></div>
  762. <div id="poplinks"><A href="/">link title</A></div>
  763. <div id="poplinks"><A href="/">link title</A></div>
  764. <div id="poplinks"><A href="/">link title</A></div>
  765.  
  766.  
  767. </div>
  768. </div>
  769.  
  770.  
  771.  
  772. </body>
  773.  
  774.  
  775.  
  776. </html>
Advertisement
Add Comment
Please, Sign In to add comment