Advertisement
alicescreed

redhccded

Mar 8th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.67 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="#e2e2e2">
  27. <meta name="color:scrollbar" content="#9a2121">
  28. <meta name="color:bold" content="#9a2121">
  29. <meta name="color:italic" content="#9a2121">
  30. <meta name="color:links" content="#9a2121">
  31. <meta name="color:borders" content="#656565">
  32. <meta name="color:hover link" content="#f3f3f3">
  33.  
  34. <link href="https://fonts.googleapis.com/css?family=Oxanium|Patrick+Hand&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: 'Oxanium', cursive;
  88. color: {color:text};
  89. font-size: 11px;
  90. letter-spacing: 0px;
  91. background-color: #0e0e0e;
  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: 'Patrick Hand', cursive;
  113. letter-spacing: 1px;
  114. border: 4px double {color:borders};
  115. padding: 15px;
  116. text-shadow: 1px 1px 2px #000;
  117. font-size: 14pt;
  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: 'Patrick Hand', cursive;
  149. letter-spacing: 1px;
  150. text-shadow: 1px 1px 3px #000;
  151. }
  152.  
  153.  
  154. a:hover {
  155. letter-spacing: 2px;
  156. text-decoration: none;
  157. font-size: 14pt;
  158. filter:(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. }
  166.  
  167. small, sup, sub {
  168. font-size: 100%;
  169. }
  170.  
  171. b, strong {
  172. text-shadow: 1px 1px 3px #000;
  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: 'Patrick Hand', cursive;
  180. }
  181.  
  182. i, em {
  183. text-shadow: 1px 1px 3px #000;
  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: 'Patrick Hand', cursive;
  193. }
  194.  
  195. h2 {
  196. text-shadow: 1px 1px 3px #a7a7a7;
  197. font-family: 'Oxanium', cursive;
  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:'Oxanium', cursive;
  218. text-shadow: 1px 1px 4px #000;
  219. border: 4px double {color:borders};
  220. }
  221.  
  222. #ask {
  223. background-color:#151118;
  224. text-align: center;
  225. color: #fff;
  226. border-radius: 20px;
  227. font-family: 'Oxanium', cursive;
  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: 'Oxanium', cursive;
  243. border: 4px double {color:borders};
  244. padding: 5px;
  245. border-radius: 15px;
  246. line-height: 120%;
  247. font-size: 22px;
  248. margin-bottom: 5px;
  249. }
  250.  
  251. h1 {
  252. font-family: 'Patrick Hand', cursive;
  253. font-size: 22pt;
  254. line-height: 16pt;
  255. font-weight: normal;
  256. text-align: center;
  257. }
  258.  
  259. #sidebar {
  260. margin-left: 70px;
  261. width: 127px;
  262. font-size: 9px;
  263. height: auto;
  264. margin-top: 347px;
  265. position: fixed;
  266. background-color: transparent;
  267. padding: 10px;
  268. }
  269.  
  270. #description {
  271. height: 190px;
  272. padding-right: 8px;
  273. overflow: auto;
  274. }
  275.  
  276. #audio {
  277. text-align: center;
  278. font-size: 8pt;
  279. line-height: 9pt;
  280. }
  281.  
  282.  
  283. #musicinfo {
  284.  
  285. text-transform: uppercase;
  286. margin-top:10px;
  287. }
  288.  
  289. blockquote {
  290. border-left: 2px solid {Color:bold};
  291. border-right: 2px solid {Color:italic};
  292. padding: 5px;
  293. border-radius: 5px;
  294. background-color: #181818;
  295. }
  296.  
  297. blockquote img {
  298. max-width: 100%;
  299. }
  300.  
  301.  
  302. ol.notes {
  303. text-align: left;
  304. list-style: upper-roman;
  305. padding: 10px;
  306.  
  307. }
  308.  
  309. #info a {
  310. font-family: 'Patrick Hand', cursive;
  311. font-size: 14pt;
  312. color: {color:scrollbar};
  313. text-shadow: 1px 1px 3px #000;
  314. }
  315.  
  316. #info a:hover {
  317. color: {color:bold};
  318. }
  319.  
  320. #credit {
  321. right:10px;
  322. bottom:7px;
  323. padding:5px;
  324. font-size:10px;
  325. position:fixed;
  326. background-image: url('{image:infobackground}');
  327. text-align: center;
  328. font-style: italic;
  329. font-family: 'Oxanium', cursive;
  330. letter-spacing: 1px;
  331. border: 4px double {color:borders};
  332. padding: 5px;
  333. font-size: 120%;
  334. margin-bottom: 5px;
  335. transition-duration: 0.6s;
  336. -moz-transition-duration: 0.6s;
  337. -webkit-transition-duration: 0.6s;
  338. -o-transition-duration: 0.6s;
  339. }
  340.  
  341.  
  342. #credit a {
  343. font-family: 'Oxanium', cursive;
  344. color:#fff;
  345. padding:5px;
  346. letter-spacing:1px;
  347. text-decoration:none;
  348. font-weight:bold;
  349. }
  350.  
  351. #tags {
  352.  
  353. }
  354.  
  355. #tags a {
  356. font-size: 8px;
  357. line-height: 9px;
  358. font-family: verdana;
  359. text-transform: uppercase;
  360. color:#fff;
  361. text-shadow: 1px 1px 2px #000;
  362. }
  363.  
  364. #post {
  365. width: 400px;
  366. margin-bottom: 20px;
  367. }
  368.  
  369. #posts {
  370. width: 400px;
  371. height: 450px;
  372. padding-right: 20px;
  373. position: absolute;
  374. margin-left: 285px;
  375. margin-top: 100px;
  376. overflow: auto;
  377. }
  378.  
  379.  
  380.  
  381. #links {
  382. position: fixed;
  383. margin-top: 450px;
  384. text-align: left;
  385. width: 200px;
  386. font-size: 13pt;
  387. line-height: 6pt;
  388. margin-left: 525px;
  389. font-family: 'Oxanium', cursive;
  390. }
  391.  
  392. #links a {
  393. color: {color:navlinks};
  394. font-weight: bold;
  395. font-family: 'Oxanium', cursive;
  396. text-transform: uppercase;
  397. }
  398.  
  399. #links a:hover {
  400. color: {color:bold};
  401. font-style: normal;
  402. }
  403.  
  404. #navlinks {
  405. position: fixed;
  406. margin-left: 100px;
  407. }
  408.  
  409. #navlinks a{
  410. line-height: 100%;
  411. font-size: 30pt;
  412. text-shadow: 2px 2px 3px #000;
  413. color:{color:text};
  414. transition-duration: 0.6s;
  415. -moz-transition-duration: 0.6s;
  416. -webkit-transition-duration: 0.6s;
  417. -o-transition-duration: 0.6s;
  418. }
  419.  
  420. #navlinks a:hover{
  421. color:{color:links};
  422. letter-spacing: 2px;
  423. transition-duration: 0.6s;
  424. -moz-transition-duration: 0.6s;
  425. -webkit-transition-duration: 0.6s;
  426. -o-transition-duration: 0.6s;
  427. }
  428.  
  429. #pages {
  430. position: fixed;
  431. margin-top: 10px;
  432. width: 120px;
  433. text-align:center;
  434. }
  435.  
  436. #pages a {
  437. color:white;
  438. }
  439.  
  440. #fade {
  441. display: none;
  442. background: #0e0e0e;
  443. position: fixed;
  444. left: 0;
  445. top: 0;
  446. width: 100%;
  447. height: 100%;
  448. background-image: url('https://i.imgur.com/qq6tOjK.png');
  449. background-position: center;
  450. opacity: 1;
  451. z-index: 9999;
  452. }
  453.  
  454. #left {
  455. float:left;
  456. margin-right: 10px;
  457. }
  458.  
  459. .popup_block{
  460. display: none;
  461. padding: 10px;
  462. position: fixed;
  463. top: 50%;
  464. left: 50%;
  465. z-index: 99999;
  466. border: 3px solid #909190;
  467. background-color: #0e0e0e;
  468. }
  469.  
  470. img.btn_close {
  471. float: right;
  472. margin: -55px -55px 0 0;
  473. }
  474.  
  475. *html #fade {
  476. position: absolute;
  477. }
  478.  
  479. *html .popup_block {
  480. position: absolute;
  481. }
  482.  
  483. #poph1 {
  484. border-radius: 20px;
  485. color: #fff;
  486. background-position: center;
  487. text-shadow: 1px 1px 3px #000;
  488. background-attachment: fixed;
  489. background-repeat: repeat;
  490. background-image: url('https://i.imgur.com/qq6tOjK.png');
  491. text-align: center;
  492. font-family: verdana;
  493. border: 4px double {color:borders};
  494. padding: 5px;
  495. font-size: 8pt;
  496. font-weight: bold;
  497. text-transform: uppercase;
  498. margin-bottom: 5px;
  499. margin-top: 5px;
  500. }
  501.  
  502. </style>
  503.  
  504. </head>
  505.  
  506. <body>
  507.  
  508.  
  509. <div id="navlinks">
  510.  
  511. <div style="margin-top: -55px; margin-left: 50px; position: fixed;">
  512. <div style="position: fixed; margin-top: 300px; margin-left: 650px;"><a href="/" title="{text:home link title}"> ♦</a></div>
  513.  
  514. <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>
  515.  
  516. <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>
  517.  
  518.  
  519. </div>
  520.  
  521. <div style="margin-top: -50px; position: fixed; margin-left:30px;">
  522.  
  523. <div style="position: fixed; margin-top: 480px; margin-left: 910px;"><a href="#?w=400" rel="pop2" class="poplight" title="{text:pop2 link title}"> ✘</a> </div>
  524.  
  525. <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>
  526.  
  527. <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>
  528.  
  529. </div>
  530.  
  531. </div>
  532.  
  533.  
  534. <div id="sidebar">
  535. <div id="description">
  536. {description}
  537. </div>
  538. <div id="pages"> {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.  
  547.  
  548. <div id="posts">{block:Posts}<div id="post">
  549.  
  550.  
  551.  
  552. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  553.  
  554. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  555.  
  556. {Caption} {/block:Caption}{/block:Photo}
  557.  
  558. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  559.  
  560. {/block:Photoset}
  561.  
  562. {block:Quote}<div id="h1">{Quote}</div>{block:Source}<div style="text-align:center;">—{Source}</div>{/block:Source}{/block:Quote}
  563.  
  564. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  565.  
  566. {Description}{/block:Description}{/block:Link}
  567.  
  568. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  569.  
  570. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  571.  
  572. {block:Audio}
  573. <div id="audio">
  574. {block:TrackName}
  575. <div id="musicinfo" style="margin-top: 5px;">
  576. {AudioPlayerGrey} <br>
  577. {TrackName} by
  578. {/block:TrackName}
  579. {block:Artist}
  580. {Artist}
  581. {/block:Artist}
  582.  
  583. </div>
  584. </div>
  585. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  586. {/block:Audio}
  587.  
  588.  
  589. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  590.  
  591. {block:Answer}
  592. <div id="ask">
  593. {Asker} asked, <br>
  594. <span style="font-weight: normal; color: #fff; font-size: 12px; text-shadow: 1px 1px 1px #000;">" {Question} "</span>
  595. </div>
  596. {Answer}{/block:Answer}
  597.  
  598. <div id="info">
  599. <a title="{TimeAgo}" title="{timeago}">✘</a> <a href="{Permalink}" title="{NoteCount} notes">✘</a> <a href="{ReblogURL}" title="reblog">✘</a>
  600. <div id="tags">
  601. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  602. {/block:Tags}{/block:HasTags}
  603. </div>
  604. </div>
  605.  
  606. </div>
  607. {block:PostNotes}<Div style="width: 400px;">
  608.  
  609.  
  610. {PostNotes}</div>{/block:PostNotes}
  611. {/block:Posts}</div>
  612.  
  613. <div id="credit">
  614. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  615. </div>
  616.  
  617.  
  618.  
  619.  
  620.  
  621. </body>
  622.  
  623. <!--start editing your stuff here!!-->
  624.  
  625. <div id="askme" class="popup_block">
  626. <div id="poph1">ask</div>
  627. <iframe frameborder="0"
  628. height="200"
  629. id="ask_form"
  630. scrolling="no"
  631. src="https://www.tumblr.com/ask_form/redhccded.tumblr.com"
  632. width="400">
  633. </iframe>
  634. </div>
  635.  
  636. <div id="pop1" class="popup_block">
  637. <div id="left"><img src="https://i.imgur.com/HUrb6R1.png" title="character stats"></div>
  638. <div style="height: 450px; overflow-y: auto; padding-right: 5px; overflow-x: hidden;">
  639.  
  640. <!--insert pop-up content html here for pop1
  641.  
  642. <div id="poph1">poph1</div> is the code for the special mini headers!!
  643. -->
  644.  
  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.  
  654.  
  655.  
  656.  
  657. </div>
  658. </div>
  659.  
  660. <div id="pop2" class="popup_block">
  661. <div id="left"><img src="https://i.imgur.com/pXUJ8UN.png" title="connections"></div>
  662. <div style="height: 450px; overflow: auto; padding-right: 5px;">
  663.  
  664. <!--insert pop-up content html here for pop2
  665.  
  666. <div id="poph1">poph1</div> is the code for the special mini headers!!
  667. -->
  668.  
  669. <div id="poph1">cupcake ipsum</div>
  670. 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.
  671.  
  672. <div id="poph1">cupcake ipsum</div>
  673. 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.
  674.  
  675. <div id="poph1">cupcake ipsum</div>
  676. 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.
  677.  
  678. </div>
  679. </div>
  680.  
  681. <div id="pop3" class="popup_block">
  682. <div id="left"><img src="https://i.imgur.com/cYss2II.png" title="rules"></div>
  683. <div style="height: 450px; overflow: auto; padding-right: 5px;">
  684. <!--insert pop-up content html here for pop3
  685.  
  686. <div id="poph1">poph1</div> is the code for the special mini headers!!
  687. -->
  688.  
  689. <div id="poph1">cupcake ipsum</div>
  690. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  691.  
  692. <div id="poph1">cupcake ipsum</div>
  693. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  694.  
  695. <div id="poph1">cupcake ipsum</div>
  696. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  697.  
  698. </div>
  699. </div>
  700.  
  701. <div id="pop4" class="popup_block">
  702. <div id="left"><img src="https://i.imgur.com/A5w023a.png" title="rules"></div>
  703. <div style="height: 450px; overflow: auto; padding-right: 5px;">
  704. <!--insert pop-up content html here for pop4
  705.  
  706. <div id="poph1">poph1</div> is the code for the special mini headers!!
  707. -->
  708.  
  709. <div id="poph1">cupcake ipsum</div>
  710. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  711.  
  712. <div id="poph1">cupcake ipsum</div>
  713. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  714.  
  715. <div id="poph1">cupcake ipsum</div>
  716. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  717.  
  718. </div>
  719. </div>
  720.  
  721.  
  722. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement