alicescreed

kiyngs

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