alicescreed

unovasrose 2

Nov 24th, 2020 (edited)
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.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="#000000">
  17. <meta name="color:bold" content="#f72b40">
  18. <meta name="color:italic" content="#ffffff">
  19. <meta name="color:links" content="#454545">
  20. <meta name="color:borders" content="#b4dbe5">
  21. <meta name="color:hover link" content="#ffffff">
  22.  
  23.  
  24. <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Economica&family=Quicksand&display=swap" rel="stylesheet">
  25.  
  26. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  27. <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  28. <script>
  29. (function($){
  30. $(document).ready(function(){
  31. $("[title]").style_my_tooltips({
  32. tip_follows_cursor:true,
  33. tip_delay_time:200,
  34. tip_fade_speed:300
  35. }
  36. );
  37. });
  38. })(jQuery);
  39. </script>
  40.  
  41. <script type="text/javascript"
  42. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  43. <script>
  44. $(document).ready(function() {
  45. //
  46. $('a.poplight[href^=#]').click(function() {
  47. var popID = $(this).attr('rel'); //Get Popup Name
  48. var popURL = $(this).attr('href'); //Get Popup href to define size
  49. var query= popURL.split('?');
  50. var dim= query[1].split('&');
  51. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  52. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  53. var popMargTop = ($('#' + popID).height() + 80) / 2;
  54. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  55. //Apply Margin to Popup
  56. $('#' + popID).css({
  57. 'margin-top' : -popMargTop,
  58. 'margin-left' : -popMargLeft
  59. });
  60. $('body').append('<div id="fade"></div>');
  61. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  62. return false;
  63. });
  64. $('a.close, #fade').live('click', function() {
  65. $('#fade , .popup_block').fadeOut(function() {
  66. $('#fade, a.close').remove(); //fade them both out
  67. });
  68. return false;
  69. });
  70. });
  71. </script>
  72.  
  73.  
  74. <style type="text/css">
  75.  
  76.  
  77. body {
  78. font-family: 'Quicksand', sans-serif;
  79. color: {color:text};
  80. font-size: 10pt;
  81. letter-spacing: 0px;
  82. background-color:#a6d6dd;
  83. background-image: url('https://i.imgur.com/PZlmd8q.png');
  84. background-position: top-right;
  85. background-repeat: no-repeat;
  86. background-attachment: fixed;
  87. line-height: 12pt;
  88. text-align: justify;
  89. }
  90.  
  91. #s-m-t-tooltip{
  92. position: absolute;
  93. z-index: 999999999999999999999999999999999999999999999999999999999999;
  94. margin-top: 10px;
  95. margin-left: 5px;
  96. display: block;
  97. color: #fff;
  98. background-image: url('https://i.imgur.com/kE3K9pr.png');
  99. background-position: center;
  100. text-align: center;
  101. font-style: italic;
  102. box-shadow: 2px 2px 5px #000;
  103. font-family: 'Bebas Neue', cursive;
  104. letter-spacing: 1px;
  105. text-shadow: 1px 1px 5px #000;
  106. border: 1px dashed {color:borders};
  107. padding: 10px;
  108. font-size: 22pt;
  109. margin-bottom: 5px;
  110. }
  111.  
  112. ::-webkit-scrollbar-thumb:vertical {
  113. background-color: transparent;
  114. height:auto;
  115. }
  116.  
  117. ::-webkit-scrollbar-thumb:horizontal {
  118. background-color:transparent;
  119. height:2px;
  120. }
  121.  
  122. ::-webkit-scrollbar {
  123. height:2px;
  124. width:2px;
  125. background-color: transparent;
  126. }
  127.  
  128.  
  129. a {
  130. text-decoration: none;
  131. color: {color:links};
  132. font-size: 18pt;
  133. line-height: 19pt;
  134. transition-duration: 0.6s;
  135. -moz-transition-duration: 0.6s;
  136. -webkit-transition-duration: 0.6s;
  137. -o-transition-duration: 0.6s;
  138. font-family: 'economica', cursive;
  139. letter-spacing: 1px;
  140. text-shadow: 1px 1px 1px #ffffff;
  141. }
  142.  
  143.  
  144. a:hover {
  145. text-decoration: none;
  146. filter:blur(2px);
  147. letter-spacing: 1px;
  148. color: {color:hover link};
  149. transition-duration: 0.6s;
  150. -moz-transition-duration: 0.6s;
  151. -webkit-transition-duration: 0.6s;
  152. -o-transition-duration: 0.6s;
  153. font-family:'economica', cursive;
  154. }
  155.  
  156. small, sup, sub {
  157. font-size: 100%;
  158. }
  159.  
  160. b, strong {
  161. text-shadow: 1px 1px 1px #ffffff;
  162. padding-left: 2px;
  163. padding-right: 2px;
  164. color:{color:bold};
  165. letter-spacing: 0px;
  166. font-size: 16pt;
  167. font-family: 'bebas neue', cursive;
  168. }
  169.  
  170. i, em {
  171. text-shadow:1px 1px 5px #000;
  172. color:{color:italic};
  173. font-family: 'economica', cursive;
  174. letter-spacing: 1px;
  175. padding-left:5px;
  176. padding-right: 5px;
  177. padding-top: 10px;
  178. padding-bottom: 10px;
  179. font-size: 22pt;
  180. }
  181.  
  182.  
  183.  
  184.  
  185. h2 {
  186. text-shadow: 1px 1px 5px #000;
  187. color: #fff;
  188. font-family: 'bebas neue', cursive;
  189. font-size: 16pt;
  190. font-weight: bold;
  191. line-height: 120%;
  192. letter-spacing: 1px;
  193. }
  194.  
  195.  
  196. #info {
  197. padding: 10px;
  198. margin-top: 10px;
  199. background-image: url('https://i.imgur.com/kE3K9pr.png');
  200. background-attachment:fixed;
  201. background-repeat: y-repeat;
  202. background-position: center;
  203. text-align: center;
  204. color: #fff;
  205. letter-spacing: 1px;
  206. text-shadow: 1px 1px #000;
  207. transition-duration: 0.6s;
  208. -moz-transition-duration: 0.6s;
  209. -webkit-transition-duration: 0.6s;
  210. -o-transition-duration: 0.6s;
  211. font-size:14pt;
  212. border: 1px dashed {color:borders};
  213. }
  214.  
  215. #info a {
  216. font-size: 30pt;
  217. color: #fff;
  218. text-shadow:1px 1px 5px #ffffff;
  219. font-weight:bold;
  220. }
  221.  
  222. #h1 {
  223. text-align: center;
  224. color: #fff;
  225. font-family: 'Bebas Neue', cursive;
  226. padding: 10px;
  227. text-shadow: 1px 1px 4px #000;
  228. line-height: 110%;
  229. font-size: 18pt;
  230. background-position: center;
  231. margin-bottom: 5px;
  232. }
  233.  
  234. #sidebar {
  235. margin-left:905px;
  236. width: 111px;
  237. font-size: 10pt;
  238. margin-top: 355px;
  239. position: fixed;
  240. background-color: transparent;
  241. }
  242.  
  243. #description {
  244. height:150px;
  245. font-size: 10px;
  246. line-height: 14px;
  247. padding-right: 5px;
  248. overflow: auto;
  249. }
  250.  
  251. #audio {
  252. text-align: center;
  253. font-size: 8pt;
  254. line-height: 9pt;
  255. }
  256.  
  257.  
  258. #musicinfo {
  259.  
  260. text-transform: uppercase;
  261. margin-top:10px;
  262. }
  263.  
  264. blockquote {
  265. border: 10px dashed transparent;
  266. border-image:url('https://i.imgur.com/kE3K9pr.png') 10 round;
  267. outline: 1px dashed {color:borders};
  268. background-color: #e6ece5;
  269. padding: 5px;
  270. font-size: 95%
  271. }
  272.  
  273. blockquote img {
  274. max-width: 100%;
  275. display: block;
  276. height: auto
  277. }
  278.  
  279. img {
  280. max-width: 100%;
  281. display: block;
  282. height: auto
  283. }
  284.  
  285.  
  286. ol.notes {
  287. text-align: left;
  288. list-style: upper-roman;
  289. padding: 10px;
  290.  
  291. }
  292.  
  293.  
  294. #info a:hover {
  295. color: {color:bold};
  296. }
  297.  
  298. #credit {
  299. right:10px;
  300. bottom:7px;
  301. padding:5px;
  302. font-size:10px;
  303. position:fixed;
  304. background-image: url('https://i.imgur.com/kE3K9pr.png');
  305. text-align: center;
  306. font-style: italic;
  307. font-family: 'Bebas Neue', cursive;
  308. letter-spacing: 1px;
  309. border: 1px {color:borders};
  310. border-style: dashed;
  311. padding: 5px;
  312. font-size: 120%;
  313. margin-bottom: 5px;
  314. transition-duration: 0.6s;
  315. -moz-transition-duration: 0.6s;
  316. -webkit-transition-duration: 0.6s;
  317. -o-transition-duration: 0.6s;
  318. }
  319.  
  320.  
  321. #credit a {
  322. font-family: 'Bebas Neue', cursive;
  323. color:#fff;
  324. padding:5px;
  325. letter-spacing:1px;
  326. text-decoration:none;
  327. font-weight:bold;
  328. }
  329.  
  330. #tags a {
  331. font-family: verdana;
  332. font-weight: bold;
  333. font-size: 7px;
  334. line-height: 3px;
  335. color: #fff;
  336. text-transform: uppercase;
  337. text-shadow: 1px 1px 1px #000;
  338. }
  339.  
  340. #post {
  341. width: 500px;
  342. margin-bottom: 70px;
  343. }
  344.  
  345. #posts {
  346. width: 500px;
  347. padding-right: 7px;
  348. height: 520px;
  349. overflow-y: auto;
  350. position: absolute;
  351. background-color: transparent;
  352. margin-left:335px;
  353. margin-top: 45px;
  354. }
  355.  
  356. #ask a {
  357. font-size:20pt;
  358. }
  359.  
  360. #ask {
  361. background-image: url('https://i.imgur.com/kE3K9pr.png');
  362. background-attachment: fixed;
  363. background-repeat: repeat;
  364. text-align: center;
  365. background-position: top center;
  366. color: #fff;
  367. padding: 10px;
  368. height: auto;
  369. border: 1px dashed {color:borders};
  370. background-color: #040404;
  371. text-shadow: 1px 1px 2px #000;
  372. }
  373.  
  374. #pa { margin-top: 20px;
  375. text-align: center;
  376. }
  377.  
  378. #pa a {
  379. text-shadow: 1px 1px 5px #000;
  380. color: #fff;
  381. font-family: 'bebas neue', cursive;
  382. text-transform: uppercase;
  383. font-size: 15pt;
  384. }
  385.  
  386. #links {
  387. position: fixed;
  388. }
  389.  
  390. #links a {
  391. font-family: 'bebas neue', cursive;
  392. font-weight: bold;
  393. font-size: 20pt;
  394. color: #e98383;
  395. animation: spin 6s;
  396. animation-direction: alternate;
  397. animation-iteration-count: infinite;
  398. transition-duration: 1s;
  399. -moz-transition-duration: 1s;
  400. -webkit-transition-duration:1s;
  401. -o-transition-duration: 1s;
  402. line-height: 16pt;
  403. }
  404.  
  405. #desctitle {
  406. padding: 4px;
  407. font-family: verdana;
  408. text-transform: uppercase;
  409. font-size: 8px;
  410. text-shadow: 1px 1px 3px #000;
  411. color: #fff;
  412. font-weight: bold;
  413. border: 1px dashed {color:borders};
  414. text-align: center;
  415. background-position: center;
  416. background-image: url('https://i.imgur.com/kE3K9pr.png');
  417. }
  418.  
  419. #fade {
  420. display: none;
  421. background: #a6d6dd;
  422. position: fixed;
  423. left: 0;
  424. top: 0;
  425. width: 100%;
  426. height: 100%;
  427. opacity: 1;
  428. background-image: url('https://i.imgur.com/gVd2ayh.png');
  429. background-position: center top;
  430. background-attachment: fixed;
  431. background-repeat: no-repeat;
  432. z-index: 9999;
  433. }
  434.  
  435. .popup_block{
  436. display: none;
  437. padding: 20px;
  438. position: fixed;
  439. top: 50%;
  440. left: 35%;
  441. z-index: 99999;
  442. background-color: #3f9cae;
  443. outline: 3px solid {color:borders};
  444. box-shadow: 2px 6px 10px #fff;
  445. }
  446.  
  447. img.btn_close {
  448. float: right;
  449. margin: -55px -55px 0 0;
  450. }
  451.  
  452. *html #fade {
  453. position: absolute;
  454. }
  455.  
  456. *html .popup_block {
  457. position: absolute;
  458. }
  459.  
  460.  
  461. #poplinks {
  462.  
  463. color: #fff;
  464. background-position: left;
  465. text-shadow: 1px 1px 3px #000;
  466. background-image: url('https://i.imgur.com/kE3K9pr.png');
  467. background-attachment:fixed;
  468. background-repeat:repeat;
  469. text-align: center;
  470. font-family: verdana;
  471. border: 1px dashed {color:borders};
  472. padding: 2px;
  473. font-size: 8pt;
  474. font-weight: bold;
  475. text-transform: uppercase;
  476. margin-bottom: 5px;
  477. margin-top: 5px;
  478.  
  479. }
  480.  
  481. #poplinks a {
  482. text-align: center;
  483. font-family: verdana;
  484. font-size: 8pt;
  485. font-weight: bold;
  486. text-transform: uppercase;
  487. text-shadow: 1px 1px 3px #000;
  488. color: #fff;
  489. }
  490.  
  491. #poph1 {
  492.  
  493. color: #fff;
  494. background-position: center;
  495. text-shadow: 1px 1px 3px #000;
  496. background-image: url('https://i.imgur.com/kE3K9pr.png');
  497. background-attachment:fixed;
  498. background-repeat:repeat;
  499. text-align: center;
  500. font-family: verdana;
  501. border: 1px dashed {color:borders};
  502. padding: 5px;
  503. font-size: 8pt;
  504. font-weight: bold;
  505. text-transform: uppercase;
  506. margin-bottom: 5px;
  507. margin-top: 10px;
  508. }
  509.  
  510. @keyframes spin {
  511. from {transform:rotate(0deg);}
  512. to {transform:rotate(360deg);}
  513. }
  514.  
  515.  
  516. </style>
  517.  
  518. </head>
  519.  
  520. <body>
  521.  
  522. <div id="links">
  523. <a href="/" title="return" style="position: fixed; margin-left: 20px; margin-top: 70px;"><img src="https://i.imgur.com/xT0BAhg.png" width="90"></a><br>
  524.  
  525. <a href="#?w=500" rel="askme" class="poplight" title="message" style="position: fixed; margin-left: 50px; margin-top: 150px;"><img src="https://i.imgur.com/xT0BAhg.png" width="80"></a><br>
  526.  
  527. <a href="#?w=500" rel="pop1" class="poplight" title="rules" style="position: fixed; margin-left: 1120px; margin-top: 50px;"><img src="https://i.imgur.com/xT0BAhg.png" width="70"></a><br>
  528.  
  529. <a href="#?w=500" rel="pop2" class="poplight" title="trainer card" style="position: fixed; margin-left: 1170px; margin-top: 100px;"><img src="https://i.imgur.com/xT0BAhg.png" width="90"></a><br>
  530.  
  531. <a href="#?w=500" rel="pop3" class="poplight" title="pokemon" style="position: fixed; margin-left: 1135px; margin-top: 180px;"><img src="https://i.imgur.com/xT0BAhg.png" width="80"></a><br>
  532.  
  533. <a href="#?w=500" rel="pop4" class="poplight" title="verses" style="position: fixed; margin-left: 1080px; margin-top: 310px;"><img src="https://i.imgur.com/xT0BAhg.png" width="80"></a><br>
  534.  
  535. <a href="#?w=500" rel="pop5" class="poplight" title="headcanons" style="position: fixed; margin-left: 1030px; margin-top: 370px;"><img src="https://i.imgur.com/xT0BAhg.png" width="70"></a><br>
  536.  
  537. <a href="#?w=500" rel="pop6" class="poplight" title="relationships" style="position: fixed; margin-left: 1100px; margin-top: 420px;"><img src="https://i.imgur.com/xT0BAhg.png" width="80"></a><br>
  538. </div>
  539.  
  540.  
  541. <div id="sidebar">
  542. <div id="desctitle" style="margin-bottom: 5px;">{title}</div>
  543. <div id="description">
  544. {Description}
  545. </div>
  546. <div id="pa">{block:Pagination}
  547. {block:PreviousPage}
  548. <a href="{PreviousPage}">fall</a> /
  549. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  550. {/block:NextPage}
  551. {/block:Pagination}</div>
  552. </div>
  553.  
  554. <div id="posts">
  555.  
  556.  
  557. {block:Posts}<div id="post">
  558.  
  559.  
  560.  
  561. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  562.  
  563. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  564.  
  565. {Caption} {/block:Caption}{/block:Photo}
  566.  
  567. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}
  568.  
  569. {/block:Photoset}
  570.  
  571. {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}
  572.  
  573. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  574.  
  575. {Description}{/block:Description}{/block:Link}
  576.  
  577. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  578.  
  579. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  580.  
  581. {block:Audio}
  582. <div id="audio">
  583. {block:TrackName}
  584. <div id="musicinfo" style="margin-top: 5px;">
  585. {AudioPlayerGrey} <br>
  586. {TrackName} by
  587. {/block:TrackName}
  588. {block:Artist}
  589. {Artist}
  590. {/block:Artist}
  591.  
  592. </div>
  593. </div>
  594. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  595. {/block:Audio}
  596.  
  597.  
  598. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  599.  
  600. {block:Answer}
  601. <div id="ask">
  602. <center>
  603. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; box-shadow: 3px 3px 5px #000; margin-bottom: 6px;"></center>
  604. {Asker} asked,<br>
  605. {Question}
  606. </div>
  607. {Answer}{/block:Answer}
  608.  
  609. <div id="info">
  610. <a title="{TimeAgo}" title="{TimeAgo}">❄</a> <a href="{Permalink}" title="{NoteCount} notes">❄</a> <a href="{ReblogURL}" title="reblog">❄</a>
  611. <div id="tags">
  612. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  613. {/block:Tags}{/block:HasTags}
  614. </div>
  615. </div>
  616.  
  617.  
  618. </div>
  619. {block:PostNotes}<Div style="width: 500px;">
  620.  
  621.  
  622. {PostNotes}</div>{/block:PostNotes}
  623. {/block:Posts}</div>
  624.  
  625.  
  626. <div id="credit">
  627. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  628. </div>
  629.  
  630.  
  631. <div id="askme" class="popup_block">
  632. <div id="poph1">ask</div>
  633. <iframe frameborder="0"
  634. height="190"
  635. id="ask_form"
  636. scrolling="no"
  637. src="https://www.tumblr.com/ask_form/unovasrose.tumblr.com"
  638. width="500">
  639. </iframe>
  640. </div>
  641.  
  642. <div id="pop1" class="popup_block" title="rules">
  643. <div style="height: 400px; overflow: auto;">
  644.  
  645. <div id="poplinks"><a href="/">link header code if ever needed</a></div>
  646.  
  647. <div id="poph1">cupcake ipsum</div>
  648. 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.
  649.  
  650. <div id="poph1">cupcake ipsum</div>
  651. 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.
  652.  
  653. <div id="poph1">cupcake ipsum</div>
  654. 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.
  655. <!--insert pop-up content html here for pop1
  656.  
  657. <div id="poph1">poph1</div> is the code for the special mini headers!!
  658. -->
  659. </div>
  660. </div>
  661.  
  662. <div id="pop2" class="popup_block">
  663. <div style="height: 400px; overflow: auto;">
  664.  
  665. <!--insert pop-up content html here for pop2
  666.  
  667. <div id="poph1">poph1</div> is the code for the special mini headers!!
  668. -->
  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.  
  676. <div id="poph1">cupcake ipsum</div>
  677. 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.
  678.  
  679. </div>
  680. </div>
  681.  
  682. <div id="pop3" class="popup_block">
  683. <div style="height: 400px; overflow: auto;">
  684. <!--insert pop-up content html here for pop3
  685.  
  686. <div id="poph1">poph1</div> is the code for the special mini headers!!
  687. -->
  688.  
  689. <div id="poph1">cupcake ipsum</div>
  690. 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.
  691.  
  692. <div id="poph1">cupcake ipsum</div>
  693. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  694.  
  695. <div id="poph1">cupcake ipsum</div>
  696. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  697.  
  698. </div>
  699. </div>
  700.  
  701.  
  702. <div id="pop4" class="popup_block">
  703. <div style="height: 400px; overflow: auto;">
  704. <!--insert pop-up content html here for pop3
  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.  
  722. <div id="pop5" class="popup_block">
  723. <div style="height: 400px; overflow: auto;">
  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="pop6" class="popup_block">
  743. <div style="height: 400px; overflow: auto;">
  744. <!--insert pop-up content html here for pop3
  745.  
  746. <div id="poph1">poph1</div> is the code for the special mini headers!!
  747. -->
  748.  
  749. <div id="poph1">cupcake ipsum</div>
  750. 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.
  751.  
  752. <div id="poph1">cupcake ipsum</div>
  753. 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.
  754.  
  755. <div id="poph1">cupcake ipsum</div>
  756. 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.
  757.  
  758. </div>
  759. </div>
  760.  
  761.  
  762. </body>
  763.  
  764.  
  765.  
  766. </html>
Add Comment
Please, Sign In to add comment