alicescreed

mcmcntomorii

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