Advertisement
alicescreed

myranores

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