alicescreed

unovasrose

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