alicescreed

fabletrove2

Sep 15th, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.65 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="#c9c9c9">
  17. <meta name="color:bold" content="#a4331f">
  18. <meta name="color:italic" content="#687266">
  19. <meta name="color:links" content="#727f92">
  20. <meta name="color:borders" content="#605e5d">
  21. <meta name="color:hover link" content="#c1189b">
  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. <meta name="text:pop5 title" content="title">
  28.  
  29. <link href="https://fonts.googleapis.com/css2?family=IM+Fell+French+Canon+SC&family=Lora&family=Old+Standard+TT&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. <style type="text/css">
  79.  
  80.  
  81. body {
  82. font-family: cambria;
  83. color: {color:text};
  84. font-size: 9pt;
  85. letter-spacing: 0px;
  86. background-color:#486047;
  87. background-image: url('https://i.imgur.com/EjupnZ1.png');
  88. background-position: top-right;
  89. background-repeat: no-repeat;
  90. background-attachment: fixed;
  91. line-height: 12pt;
  92. text-align: justify;
  93. }
  94.  
  95. #s-m-t-tooltip{
  96. position: absolute;
  97. z-index: 999999999999999999999999999999999999999999999999999999999999;
  98. margin-top: 10px;
  99. margin-left: 5px;
  100. display: block;
  101. color: #fff;
  102. background-image: url('https://i.imgur.com/z1ECtQx.png');
  103. background-attachment: fixed;
  104. background-repeat: repeat;
  105. background-position: center;
  106. text-align: center;
  107. font-style: italic;
  108. box-shadow: 2px 2px 5px #000;
  109. font-family: cambria;
  110. letter-spacing: 1px;
  111. text-shadow: 1px 1px 5px #000;
  112. border: 4px double {color:borders};
  113. padding: 10px;
  114. font-size: 22pt;
  115. margin-bottom: 5px;
  116. }
  117.  
  118. ::-webkit-scrollbar-thumb:vertical {
  119. background-color: transparent;
  120. height:auto;
  121. }
  122.  
  123. ::-webkit-scrollbar-thumb:horizontal {
  124. background-color: transparent;
  125. height:2px;
  126. }
  127.  
  128. ::-webkit-scrollbar {
  129. height:2px;
  130. width:2px;
  131. background-color: transparent;
  132. }
  133.  
  134.  
  135. a {
  136. text-decoration: none;
  137. color: {color:links};
  138. font-size: 12pt;
  139. font-family: 'old standard tt', serif;
  140. line-height: 19pt;
  141. transition-duration: 0.6s;
  142. -moz-transition-duration: 0.6s;
  143. -webkit-transition-duration: 0.6s;
  144. -o-transition-duration: 0.6s;
  145. font-weight: bold;
  146. letter-spacing: 1px;
  147. text-shadow: 1px 1px 4px #000;
  148. }
  149.  
  150.  
  151. a:hover {
  152. text-decoration: none;
  153. letter-spacing: 1px;
  154. filter:blur(2px);
  155. color: {color:hover link};
  156. transition-duration: 0.6s;
  157. -moz-transition-duration: 0.6s;
  158. -webkit-transition-duration: 0.6s;
  159. -o-transition-duration: 0.6s;
  160. }
  161.  
  162. small, sup, sub {
  163. font-size: 100%;
  164. }
  165.  
  166. b, strong {
  167. text-shadow: 1px 1px 4px #544d3d;
  168. padding-left: 2px;
  169. padding-right: 2px;
  170. color:{color:bold};
  171. letter-spacing: 1px;
  172. font-size: 16pt;
  173. font-family: 'IM Fell French Canon SC', serif;
  174. }
  175.  
  176. i, em {
  177. text-shadow: 1px 1px 4px #fff;
  178. color:{color:italic};
  179. font-style: italic;
  180. font-family: 'old standard tt', serif;
  181. letter-spacing: 1px;
  182. padding-left:5px;
  183. padding-right: 5px;
  184. padding-top: 10px;
  185. padding-bottom: 10px;
  186. font-size: 22pt;
  187. }
  188.  
  189.  
  190.  
  191.  
  192. h2 {
  193. text-shadow: 1px 1px 5px #000;
  194. color: #fff;
  195. font-family: 'IM Fell French Canon SC', serif;
  196. font-size: 16pt;
  197. font-weight: bold;
  198. line-height: 120%;
  199. letter-spacing: 1px;
  200. }
  201.  
  202.  
  203. #info {
  204. padding: 10px;
  205. margin-top: 10px;
  206. background-attachment: fixed;
  207. background-repeat: repeat;
  208. background-image: url('https://i.imgur.com/z1ECtQx.png');
  209. text-align: center;
  210. color: #fff;
  211. margin-bottom: 70px;
  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:10pt;
  219. border-radius: 50px;
  220. border: 4px double {color:borders};
  221. }
  222.  
  223. #info a {
  224. color: {color:bold};
  225. font-size: 30pt;
  226. text-shadow: 1px 1px 5px #000;
  227. font-weight:bold;
  228. }
  229.  
  230. #h1 {
  231. text-align: center;
  232. color: #fff;
  233. font-family: 'IM Fell French Canon SC', serif;
  234. padding: 10px;
  235. text-shadow: 1px 1px 4px #000;
  236. line-height: 110%;
  237. font-size: 18pt;
  238. background-position: center;
  239. margin-bottom: 5px;
  240. }
  241.  
  242. #sidebar {
  243. margin-left:525px;
  244. width: 115px;
  245. font-size: 10pt;
  246. margin-top: 305px;
  247. position: fixed;
  248. background-color: transparent;
  249. }
  250.  
  251. #description {
  252. height:190px;
  253. font-size: 10px;
  254. line-height: 14px;
  255. padding-right: 5px;
  256. overflow: auto;
  257. }
  258.  
  259. #audio {
  260. text-align: center;
  261. font-size: 8pt;
  262. line-height: 9pt;
  263. }
  264.  
  265.  
  266. #musicinfo {
  267.  
  268. text-transform: uppercase;
  269. margin-top:10px;
  270. }
  271.  
  272. blockquote {
  273. border: 10px dashed transparent;
  274. border-image:url('https://i.imgur.com/z1ECtQx.png') 10 round;
  275. outline: 4px double {color:borders};
  276. background-color: #212121;
  277. color: #fff;
  278. padding: 5px;
  279. font-size: 95%
  280. }
  281.  
  282. blockquote img {
  283. max-width: 100%;
  284. display: block;
  285. height: auto
  286. }
  287.  
  288. img {
  289. max-width: 100%;
  290. display: block;
  291. height: auto
  292. }
  293.  
  294.  
  295. ol.notes {
  296. text-align: left;
  297. list-style: upper-roman;
  298. padding: 10px;
  299.  
  300. }
  301.  
  302.  
  303. #info a:hover {
  304. color: {color:bold};
  305. }
  306.  
  307. #credit {
  308. right:10px;
  309. bottom:7px;
  310. padding:5px;
  311. font-size:10px;
  312. position:fixed;
  313. background-image: url('https://i.imgur.com/z1ECtQx.png');
  314. text-align: center;
  315. font-style: italic;
  316. font-family: cambria;
  317. letter-spacing: 1px;
  318. border: 1px {color:borders};
  319. border-style: dashed;
  320. padding: 5px;
  321. font-size: 120%;
  322. margin-bottom: 5px;
  323. transition-duration: 0.6s;
  324. -moz-transition-duration: 0.6s;
  325. -webkit-transition-duration: 0.6s;
  326. -o-transition-duration: 0.6s;
  327. }
  328.  
  329.  
  330. #credit a {
  331. font-family: cambria;
  332. color:#fff;
  333. padding:5px;
  334. letter-spacing:1px;
  335. text-decoration:none;
  336. font-weight:bold;
  337. }
  338.  
  339. #tags a {
  340. font-family: verdana;
  341. font-weight: bold;
  342. font-size: 8px;
  343. line-height: 6px;
  344. color: #fff;
  345. text-transform: uppercase;
  346. text-shadow: 1px 1px 1px #000;
  347. }
  348.  
  349. #post {
  350. width: 400px;
  351. margin-bottom: 25px;
  352. }
  353.  
  354. #posts {
  355. width: 400px;
  356. padding-right: 10px;
  357. height:610px;
  358. overflow-y: auto;
  359. margin-top: 5px;
  360. position: absolute;
  361. background-color: transparent;
  362. margin-left:67px;
  363. }
  364.  
  365. #ask a {
  366. color: {color:italic};
  367. font-size:20pt;
  368. }
  369.  
  370. #ask {
  371. background-image: url('https://i.imgur.com/z1ECtQx.png');
  372. background-repeat: repeat;
  373. text-align: center;
  374. color: #fff;
  375. padding: 10px;
  376. height: auto;
  377. border: 4px double {color:borders};
  378. background-color: #040404;
  379. text-shadow: 1px 1px 2px #000;
  380. }
  381.  
  382. #pa { margin-top: 20px;
  383. text-align: center;
  384. }
  385.  
  386. #pa a {
  387. text-shadow: 1px 1px 5px #000;
  388. color: #fff;
  389. font-family: cambria;
  390. text-transform: uppercase;
  391. font-size: 15pt;
  392. }
  393.  
  394. @keyframes bounce {
  395. 0% { transform: translateY(0); }
  396. 100% { transform: translateY(-10px); }
  397. }
  398.  
  399. #links {
  400. position: fixed;
  401. }
  402.  
  403. #links a {
  404. animation: bounce 3s;
  405. animation-direction: alternate;
  406. animation-iteration-count: infinite;
  407. transition-duration: 1s;
  408. -moz-transition-duration: 1s;
  409. text-shadow: 5px 5px 10px #f7f7f7;
  410. -webkit-transition-duration:1s;
  411. -o-transition-duration: 1s;
  412. font-weight: bold;
  413. font-size: 35pt;
  414. color:#c5b9ad;
  415. line-height: 16pt;
  416. }
  417.  
  418.  
  419. #links a:hover {
  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. border-radius: 50px;
  429. padding: 4px;
  430. font-family: verdana;
  431. text-transform: uppercase;
  432. font-size: 8px;
  433. text-shadow: 1px 1px 3px #000;
  434. color: #fff;
  435. font-weight: bold;
  436. border: 4px double {color:borders};
  437. text-align: center;
  438. background-position: center;
  439. background-image: url('https://i.imgur.com/z1ECtQx.png');
  440. }
  441.  
  442.  
  443. #fade {
  444. display: none;
  445. background-color: #000;
  446. position: fixed;
  447. left: 0;
  448. top: 0;
  449. width: 100%;
  450. height: 100%;
  451. opacity: .5;
  452. z-index: 9999;
  453. }
  454.  
  455. .popup_block{
  456. display: none;
  457. padding: 20px;
  458. position: fixed;
  459. top: 50%;
  460. left: 50%;
  461. background-color: #7b725f;
  462. z-index: 99999;
  463. outline: 3px solid {Color:Borders};
  464. box-shadow: 2px 2px 10px #000;
  465. }
  466.  
  467. img.btn_close {
  468. float: right;
  469. margin: -55px -55px 0 0;
  470. }
  471.  
  472. *html #fade {
  473. position: absolute;
  474. }
  475.  
  476. *html .popup_block {
  477. position: absolute;
  478. }
  479.  
  480.  
  481. #poplinks {
  482.  
  483. color: #fff;
  484. background-position: left;
  485. text-shadow: 1px 1px 3px #000;
  486. background-position: right; text-align: center;
  487. font-family: verdana;
  488. background-image: url('https://i.imgur.com/z1ECtQx.png');
  489. background-attachment: fixed;
  490. background-repeat: repeat;
  491. background-position: top center;
  492. border: 4px double {color:borders};
  493. padding: 2px;
  494. font-size: 8pt;
  495. font-weight: bold;
  496. text-transform: uppercase;
  497. margin-bottom: 5px;
  498. margin-top: 5px;border-radius: 50px;
  499.  
  500. }
  501.  
  502. #poplinks a {
  503. text-align: center;
  504. font-family: verdana;
  505. font-size: 8pt;
  506. font-weight: bold;
  507. text-transform: uppercase;
  508. text-shadow: 1px 1px 3px #000;
  509. color: #fff;
  510. }
  511.  
  512. #poph1 {
  513.  
  514. color: #fff;
  515. background-position: center;
  516. text-shadow: 1px 1px 3px #000;
  517. background-image: url('https://i.imgur.com/z1ECtQx.png');
  518. background-attachment: fixed;
  519. background-position: right;
  520. text-align: center;
  521. font-family: verdana;
  522. border-radius: 50px;
  523. border: 4px double {color:borders};
  524. padding: 5px;
  525. font-size: 8pt;
  526. font-weight: bold;
  527. margin-top: 10px;
  528. text-transform: uppercase;
  529. margin-bottom: 10px;
  530. }
  531.  
  532. #left {
  533. float: left;
  534. margin-right: 10px;
  535. }
  536.  
  537. </style>
  538.  
  539. </head>
  540.  
  541. <body>
  542.  
  543. <div id="links">
  544. <a href="/" title="return" style="margin-left: 670px; margin-top: 330px; position: fixed;">✦</a>
  545. <a href="/ask" title="ask" style="margin-left: 710px; margin-top: 370px; position: fixed; font-size: 50pt;"> ✦</a>
  546. <a href="#?w=500" rel="pop1" class="poplight" title="{text:pop1 title}" style="margin-left: 860px; margin-top: 50px; position: fixed; font-size: 50pt;">✦</a>
  547. <a href="#?w=500" rel="pop2" class="poplight" title="{text:pop2 title}" style="margin-left: 910px; margin-top: 90px; position: fixed;"> ✦</a>
  548. <a href="#?w=500" rel="pop3" class="poplight" title="{text:pop3 title}" style="margin-left: 1100px; margin-top: 530px; position: fixed; font-size: 50pt;">✦</a>
  549. <a href="#?w=500" rel="pop4" class="poplight" title="{text:pop4 title}" style="margin-left: 1160px; margin-top: 500px; position: fixed;">✦</a>
  550. <a href="https://fabletrove.tumblr.com/muses" title="{text:pop5 title}" style="margin-left: 1200px; margin-top: 530px; position: fixed; font-size: 65pt;">✦</a>
  551. <p><p>
  552.  
  553. </div>
  554.  
  555.  
  556. <div id="sidebar">
  557. <div id="description">
  558. {Description}
  559. </div>
  560. <div id="pa">
  561. {block:Pagination}
  562. {block:PreviousPage}
  563. <a href="{PreviousPage}">fall</a> /
  564. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  565. {/block:NextPage}
  566. {/block:Pagination}
  567. </div>
  568. </div>
  569.  
  570. <div id="posts">
  571.  
  572.  
  573. {block:Posts}<div id="post">
  574.  
  575.  
  576.  
  577. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  578.  
  579. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  580.  
  581. {Caption} {/block:Caption}{/block:Photo}
  582.  
  583. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  584.  
  585. {/block:Photoset}
  586.  
  587. {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}
  588.  
  589. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  590.  
  591. {Description}{/block:Description}{/block:Link}
  592.  
  593. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  594.  
  595. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  596.  
  597. {block:Audio}
  598. <div id="audio">
  599. {block:TrackName}
  600. <div id="musicinfo" style="margin-top: 5px;">
  601. {AudioPlayerGrey} <br>
  602. {TrackName} by
  603. {/block:TrackName}
  604. {block:Artist}
  605. {Artist}
  606. {/block:Artist}
  607.  
  608. </div>
  609. </div>
  610. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  611. {/block:Audio}
  612.  
  613.  
  614. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  615.  
  616. {block:Answer}
  617. <div id="ask">
  618. <center>
  619. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; box-shadow: 3px 3px 5px #000; margin-bottom: 6px;"></center>
  620. {Asker} asked,<br>
  621. {Question}
  622. </div>
  623. {Answer}{/block:Answer}
  624.  
  625. <div id="info">
  626. <a title="{TimeAgo}" title="{TimeAgo}">✦️</a> <a href="{Permalink}" title="{NoteCount} notes">✦️</a> <a href="{ReblogURL}" title="reblog"> ✦️</a>
  627. <div id="tags">
  628. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  629. {/block:Tags}{/block:HasTags}
  630. </div>
  631. </div>
  632.  
  633.  
  634. </div>
  635. {block:PostNotes}<Div style="width: 400px;">
  636.  
  637.  
  638. {PostNotes}</div>{/block:PostNotes}
  639. {/block:Posts}</div>
  640.  
  641.  
  642. <div id="credit">
  643. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  644. </div>
  645.  
  646. <div id="pop1" class="popup_block">
  647.  
  648. <div id="left"><img src="https://i.imgur.com/UCj9Jjo.png" title="About Ellie"></div>
  649.  
  650. <div style="height:500px; overflow: auto;">
  651.  
  652. <div id="poph1">cupcake ipsum</div>
  653.  
  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.  
  656. <div id="poph1">cupcake ipsum</div>
  657.  
  658. 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.
  659.  
  660. <div id="poph1">cupcake ipsum</div>
  661.  
  662. 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.
  663.  
  664.  
  665. </div>
  666. </div>
  667.  
  668. <div id="pop2" class="popup_block">
  669.  
  670. <div id="left"><img src="https://i.imgur.com/1bq8PNF.png" title="Verses"></div>
  671.  
  672. <div style="height:500px; overflow: auto;">
  673.  
  674. <!--insert pop-up content html here for pop2
  675.  
  676. <div id="poph1">poph1</div> is the code for the special mini headers!!
  677. -->
  678.  
  679. <div id="poph1">cupcake ipsum</div>
  680. 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.
  681.  
  682. <div id="poph1">cupcake ipsum</div>
  683. 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.
  684.  
  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>
  689. </div>
  690.  
  691. <div id="pop3" class="popup_block">
  692.  
  693. <div id="left"><img src="https://i.imgur.com/gfj6e7Q.png" title="About Rey"></div>
  694.  
  695. <div style="height:500px; overflow: auto;">
  696.  
  697. <!--insert pop-up content html here for pop2
  698.  
  699. <div id="poph1">poph1</div> is the code for the special mini headers!!
  700. -->
  701.  
  702. <div id="poph1">cupcake ipsum</div>
  703. 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.
  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>
  712. </div>
  713.  
  714. <div id="pop4" class="popup_block">
  715.  
  716. <div id="left"><img src="https://i.imgur.com/n8cHIOU.png" title="Rules"></div>
  717.  
  718. <div style="height:500px; overflow: auto;">
  719.  
  720. <!--insert pop-up content html here for pop2
  721.  
  722. <div id="poph1">poph1</div> is the code for the special mini headers!!
  723. -->
  724.  
  725. <div id="poph1">cupcake ipsum</div>
  726. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  727.  
  728. <div id="poph1">cupcake ipsum</div>
  729. 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.
  730.  
  731. <div id="poph1">cupcake ipsum</div>
  732. 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.
  733.  
  734. </div>
  735. </div>
  736.  
  737.  
  738.  
  739. </body>
  740.  
  741.  
  742.  
  743. </html>
Add Comment
Please, Sign In to add comment