alicescreed

wiccanflare

May 13th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.11 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="#ffffff">
  17. <meta name="color:scrollbar" content="#4c4c4c">
  18. <meta name="color:bold" content="#767676">
  19. <meta name="color:italic" content="#6b2a1e">
  20. <meta name="color:links" content="#970500">
  21. <meta name="color:borders" content="#4c4c4c">
  22. <meta name="color:hover link" content="#adadad">
  23.  
  24. <meta name="text:pop1 link title" content="link1">
  25. <meta name="text:pop2 link title" content="link2">
  26. <meta name="text:pop3 link title" content="link3">
  27. <meta name="text:pop4 link title" content="link4">
  28.  
  29.  
  30. <link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cookie&family=Fira+Sans+Extra+Condensed&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: 'Fira Sans Extra Condensed', sans-serif;
  85. color: {color:text};
  86. font-size: 9pt;
  87. letter-spacing: 0px;
  88. background-color:#000;
  89. background-image: url('https://i.imgur.com/FBDmtRO.png');
  90. background-position: top-right;
  91. background-repeat: no-repeat;
  92. background-attachment: fixed;
  93. line-height: 12pt;
  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. color: #fff;
  104. background-image: url('https://i.imgur.com/3T0b30t.png');
  105. background-position: center;
  106. text-align: center;
  107. font-style: italic;
  108. box-shadow: 2px 2px 5px #000;
  109. font-family: 'Cookie', cursive;
  110. letter-spacing: 1px;
  111. text-shadow: 1px 1px 5px #000;
  112. border: 1px dotted {color:borders};
  113. padding: 10px;
  114. font-size: 22pt;
  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:1px;
  130. width:1px;
  131. background-color: transparent;
  132. }
  133.  
  134.  
  135. a {
  136. text-decoration: none;
  137. color: {color:links};
  138. font-size: 18pt;
  139. line-height: 19pt;
  140. transition-duration: 0.6s;
  141. -moz-transition-duration: 0.6s;
  142. -webkit-transition-duration: 0.6s;
  143. -o-transition-duration: 0.6s;
  144. font-family: 'Cookie', cursive;
  145. letter-spacing: 1px;
  146. text-shadow: 1px 1px 4px #000;
  147. }
  148.  
  149.  
  150. a:hover {
  151. text-decoration: none;
  152. filter:blur(2px);
  153. letter-spacing: 1px;
  154. color: {color:hover link};
  155. transition-duration: 0.6s;
  156. -moz-transition-duration: 0.6s;
  157. -webkit-transition-duration: 0.6s;
  158. -o-transition-duration: 0.6s;
  159. font-family: 'Cookie', cursive;
  160. }
  161.  
  162. small, sup, sub {
  163. font-size: 100%;
  164. }
  165.  
  166. b, strong {
  167. text-shadow: 1px 1px 4px #000;
  168. padding-left: 2px;
  169. padding-right: 2px;
  170. color:{color:bold};
  171. letter-spacing: 0px;
  172. font-size: 16pt;
  173. font-family: 'Abril Fatface', cursive;
  174. }
  175.  
  176. i, em {
  177. text-shadow: 1px 1px 4px #000;
  178. color:{color:italic};
  179. font-family: 'Cookie', cursive;
  180. letter-spacing: 1px;
  181. padding-left:5px;
  182. padding-right: 5px;
  183. padding-top: 10px;
  184. padding-bottom: 10px;
  185. font-size: 22pt;
  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. margin-top: 10px;
  205. background-image: url('https://i.imgur.com/3T0b30t.png');
  206. background-attachment:fixed;
  207. background-repeat: y-repeat;
  208. background-position: center;
  209. text-align: center;
  210. color: #fff;
  211. letter-spacing: 1px;
  212. text-shadow: 1px 1px #000;
  213. transition-duration: 0.6s;
  214. -moz-transition-duration: 0.6s;
  215. -webkit-transition-duration: 0.6s;
  216. -o-transition-duration: 0.6s;
  217. font-size:14pt;
  218. border: 1px dotted {color:borders};
  219. }
  220.  
  221. #info a {
  222. font-size: 30pt;
  223. text-shadow: 1px 1px 3px #000;
  224. font-weight:bold;
  225. }
  226.  
  227. #h1 {
  228. text-align: center;
  229. color: #fff;
  230. font-family: 'Cookie', cursive;
  231. padding: 10px;
  232. text-shadow: 1px 1px 4px #000;
  233. line-height: 110%;
  234. font-size: 18pt;
  235. background-position: center;
  236. margin-bottom: 5px;
  237. }
  238.  
  239. #sidebar {
  240. margin-left:855px;
  241. width: 110px;
  242. font-size: 10pt;
  243. margin-top: 255px;
  244. position: fixed;
  245. background-color: transparent;
  246. }
  247.  
  248. #description {
  249. height:115px;
  250. font-size: 10px;
  251. line-height: 14px;
  252. padding-right: 5px;
  253. overflow: auto;
  254. }
  255.  
  256. #audio {
  257. text-align: center;
  258. font-size: 8pt;
  259. line-height: 9pt;
  260. }
  261.  
  262.  
  263. #musicinfo {
  264.  
  265. text-transform: uppercase;
  266. margin-top:10px;
  267. }
  268.  
  269. blockquote {
  270. border: 10px dotted transparent;
  271. border-image:url('https://i.imgur.com/3T0b30t.png') 10 round;
  272. outline: 1px dotted {color:borders};
  273. background-color: #040404;
  274. color: #bcbcbc;
  275. padding: 5px;
  276. font-size: 95%
  277. }
  278.  
  279. blockquote img {
  280. max-width: 100%;
  281. display: block;
  282. height: auto
  283. }
  284.  
  285. img {
  286. max-width: 100%;
  287. display: block;
  288. height: auto
  289. }
  290.  
  291.  
  292. ol.notes {
  293. text-align: left;
  294. list-style: upper-roman;
  295. padding: 10px;
  296.  
  297. }
  298.  
  299.  
  300. #info a:hover {
  301. color: {color:bold};
  302. }
  303.  
  304. #credit {
  305. right:10px;
  306. bottom:7px;
  307. padding:5px;
  308. font-size:10px;
  309. position:fixed;
  310. background-image: url('https://i.imgur.com/3T0b30t.png');
  311. text-align: center;
  312. font-style: italic;
  313. font-family: 'Cookie', cursive;
  314. letter-spacing: 1px;
  315. border: 1px {color:borders};
  316. border-style: dotted;
  317. padding: 5px;
  318. font-size: 120%;
  319. margin-bottom: 5px;
  320. transition-duration: 0.6s;
  321. -moz-transition-duration: 0.6s;
  322. -webkit-transition-duration: 0.6s;
  323. -o-transition-duration: 0.6s;
  324. }
  325.  
  326.  
  327. #credit a {
  328. font-family: 'Cookie', cursive;
  329. color:#fff;
  330. padding:5px;
  331. letter-spacing:1px;
  332. text-decoration:none;
  333. font-weight:bold;
  334. }
  335.  
  336. #tags a {
  337. font-family: verdana;
  338. font-weight: bold;
  339. font-size: 8px;
  340. line-height: 6px;
  341. color: #fff;
  342. text-transform: uppercase;
  343. text-shadow: 1px 1px 1px #000;
  344. }
  345.  
  346. #post {
  347. width: 250px;
  348. margin-bottom: 25px;
  349. }
  350.  
  351. #posts {
  352. width: 250px;
  353. padding-right: 7px;
  354. height: 495px;
  355. overflow-y: auto;
  356. position: absolute;
  357. background-color: transparent;
  358. margin-left:567px;
  359. }
  360.  
  361. #ask a {
  362. font-size:20pt;
  363. }
  364.  
  365. #ask {
  366. background-image: url('https://i.imgur.com/3T0b30t.png');
  367. background-attachment: fixed;
  368. background-repeat: repeat;
  369. text-align: center;
  370. background-position: top center;
  371. color: #fff;
  372. padding: 10px;
  373. height: auto;
  374. border: 1px dotted {color:borders};
  375. background-color: #040404;
  376. text-shadow: 1px 1px 2px #000;
  377. }
  378.  
  379. #pa { margin-top: 8px;
  380. text-align: center;
  381. }
  382.  
  383. #pa a {
  384. text-shadow: 1px 1px 5px #000;
  385. color: #fff;
  386. font-family: 'Abril Fatface', cursive;
  387. text-transform: uppercase;
  388. font-size: 15pt;
  389. }
  390.  
  391. #links {
  392. position: fixed;
  393. margin-left:980px;
  394. text-align: left;
  395. margin-top: 250px;
  396. width: 500px;
  397. line-height: 14pt;
  398. }
  399.  
  400. #links a {
  401. font-family: 'Abril Fatface', cursive;
  402. font-weight: bold;
  403. font-size: 16pt;
  404. color: #fff;
  405. line-height: 16pt;
  406. }
  407.  
  408. #desctitle {
  409. padding: 4px;
  410. font-family: verdana;
  411. text-transform: uppercase;
  412. font-size: 8px;
  413. text-shadow: 1px 1px 3px #000;
  414. color: #fff;
  415. font-weight: bold;
  416. border: 1px dotted {color:borders};
  417. text-align: center;
  418. background-position: center;
  419. background-image: url('https://i.imgur.com/3T0b30t.png');
  420. }
  421.  
  422. #fade {
  423. display: none;
  424. background: #000;
  425. position: fixed;
  426. left: 0;
  427. top: 0;
  428. width: 100%;
  429. height: 100%;
  430. opacity: .5;
  431. z-index: 9999;
  432. }
  433.  
  434. .popup_block{
  435. display: none;
  436. padding: 20px;
  437. position: fixed;
  438. top: 50%;
  439. left: 50%;
  440. z-index: 99999;
  441. background-color: #0c0c0c;
  442. border: 20px solid transparent;
  443. border-image:url('https://i.imgur.com/3T0b30t.png') 10 round;
  444. outline: 1px dotted {color:borders};
  445. box-shadow: 2px 2px 5px #000;
  446. }
  447.  
  448. img.btn_close {
  449. float: right;
  450. margin: -55px -55px 0 0;
  451. }
  452.  
  453. *html #fade {
  454. position: absolute;
  455. }
  456.  
  457. *html .popup_block {
  458. position: absolute;
  459. }
  460.  
  461.  
  462. #poplinks {
  463.  
  464. color: #fff;
  465. background-position: left;
  466. text-shadow: 1px 1px 3px #000;
  467. background-image: url('https://i.imgur.com/3T0b30t.png');
  468. background-attachment:fixed;
  469. background-repeat:repeat;
  470. text-align: center;
  471. font-family: verdana;
  472. border: 1px dotted {color:borders};
  473. padding: 2px;
  474. font-size: 8pt;
  475. font-weight: bold;
  476. text-transform: uppercase;
  477. margin-bottom: 5px;
  478. margin-top: 5px;
  479.  
  480. }
  481.  
  482. #poplinks a {
  483. text-align: center;
  484. font-family: verdana;
  485. font-size: 8pt;
  486. font-weight: bold;
  487. text-transform: uppercase;
  488. text-shadow: 1px 1px 3px #000;
  489. color: #fff;
  490. }
  491.  
  492. #poph1 {
  493.  
  494. color: #fff;
  495. background-position: center;
  496. text-shadow: 1px 1px 3px #000;
  497. background-image: url('https://i.imgur.com/3T0b30t.png');
  498. background-attachment:fixed;
  499. background-repeat:repeat;
  500. text-align: center;
  501. font-family: verdana;
  502. border: 1px dotted {color:borders};
  503. padding: 5px;
  504. font-size: 8pt;
  505. font-weight: bold;
  506. text-transform: uppercase;
  507. margin-bottom: 5px;
  508. margin-top: 10px;
  509. }
  510.  
  511.  
  512. </style>
  513.  
  514. </head>
  515.  
  516. <body>
  517.  
  518. <div id="links">
  519. <a href="/" title="return">I.</a><br>
  520. <a href="#?w=250" rel="askme" class="poplight" title="message">II.</a><br>
  521. <a href="#?w=250" rel="pop1" class="poplight" title="{text:pop1 link title}">III.</a><br>
  522. <a href="#?w=250" rel="pop2" class="poplight" title="{text:pop2 link title}">IV.</a><br>
  523. <a href="#?w=250" rel="pop3" class="poplight" title="{text:pop3 link title}">V.</a><br>
  524. <a href="#?w=250" rel="pop4" class="poplight" title="{text:pop4 link title}">VI.</a><br>
  525. </div>
  526.  
  527.  
  528. <div id="sidebar">
  529. <div id="desctitle" style="margin-bottom: 5px;">{title}</div>
  530. <div id="description">
  531. {Description}
  532. </div>
  533. <div id="pa">{block:Pagination}
  534. {block:PreviousPage}
  535. <a href="{PreviousPage}">fall</a> /
  536. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  537. {/block:NextPage}
  538. {/block:Pagination}</div>
  539. </div>
  540.  
  541. <div id="posts">
  542.  
  543.  
  544. {block:Posts}<div id="post">
  545.  
  546.  
  547.  
  548. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  549.  
  550. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  551.  
  552. {Caption} {/block:Caption}{/block:Photo}
  553.  
  554. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}
  555.  
  556. {/block:Photoset}
  557.  
  558. {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}
  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-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  586.  
  587. {block:Answer}
  588. <div id="ask">
  589. <center>
  590. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; box-shadow: 3px 3px 5px #000; margin-bottom: 6px;"></center>
  591. {Asker} asked,<br>
  592. {Question}
  593. </div>
  594. {Answer}{/block:Answer}
  595.  
  596. <div id="info">
  597. <a title="{TimeAgo}" title="{TimeAgo}">✖</a> <a href="{Permalink}" title="{NoteCount} notes">✖</a> <a href="{ReblogURL}" title="reblog">✖</a>
  598. <div id="tags">
  599. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  600. {/block:Tags}{/block:HasTags}
  601. </div>
  602. </div>
  603.  
  604.  
  605. </div>
  606. {block:PostNotes}<Div style="width: 250px;">
  607.  
  608.  
  609. {PostNotes}</div>{/block:PostNotes}
  610. {/block:Posts}</div>
  611.  
  612.  
  613. <div id="credit">
  614. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  615. </div>
  616.  
  617.  
  618. <div id="askme" class="popup_block">
  619. <div id="poph1">ask</div>
  620. <iframe frameborder="0"
  621. height="190"
  622. id="ask_form"
  623. scrolling="no"
  624. src="https://www.tumblr.com/ask_form/wiccanflare.tumblr.com"
  625. width="250">
  626. </iframe>
  627. </div>
  628.  
  629. <div id="pop1" class="popup_block">
  630. <img src="https://i.imgur.com/Sd3DE2o.png" style="margin-bottom: 5px;">
  631. <div style="height: 300px; overflow: auto; padding-right: 10px;">
  632. <div id="poph1">cupcake ipsum</div>
  633. 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.
  634.  
  635. <div id="poph1">cupcake ipsum</div>
  636. 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.
  637.  
  638. <div id="poph1">cupcake ipsum</div>
  639. 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.
  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. </div>
  645. </div>
  646.  
  647. <div id="pop2" class="popup_block">
  648. <img src="https://i.imgur.com/Sd3DE2o.png" style="margin-bottom: 5px;">
  649. <div style="height: 300px; overflow: auto; padding-right: 10px;">
  650.  
  651. <!--insert pop-up content html here for pop2
  652.  
  653. <div id="poph1">poph1</div> is the code for the special mini headers!!
  654. -->
  655.  
  656. <div id="poph1">cupcake ipsum</div>
  657. 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.
  658.  
  659. <div id="poph1">cupcake ipsum</div>
  660. 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.
  661.  
  662. <div id="poph1">cupcake ipsum</div>
  663. 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.
  664.  
  665. </div>
  666. </div>
  667.  
  668. <div id="pop3" class="popup_block">
  669. <img src="https://i.imgur.com/Sd3DE2o.png" style="margin-bottom: 5px;">
  670. <div style="height: 300px; overflow: auto; padding-right: 10px;">
  671. <!--insert pop-up content html here for pop3
  672.  
  673. <div id="poph1">poph1</div> is the code for the special mini headers!!
  674. -->
  675.  
  676. <div id="poph1">cupcake ipsum</div>
  677. 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.
  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>
  686. </div>
  687.  
  688.  
  689. <div id="pop4" class="popup_block">
  690. <img src="https://i.imgur.com/Sd3DE2o.png" style="margin-bottom: 5px;">
  691. <div style="height: 300px; 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="poplinks"><a href="/">title</a></div>
  698. <div id="poplinks"><a href="/">title</a></div>
  699. <div id="poplinks"><a href="/">title</a></div>
  700. <div id="poplinks"><a href="/">title</a></div>
  701. <div id="poplinks"><a href="/">title</a></div>
  702. <div id="poplinks"><a href="/">title</a></div>
  703. <div id="poplinks"><a href="/">title</a></div>
  704. <div id="poplinks"><a href="/">title</a></div>
  705. <div id="poplinks"><a href="/">title</a></div>
  706. <div id="poplinks"><a href="/">title</a></div>
  707. <div id="poplinks"><a href="/">title</a></div>
  708. <div id="poplinks"><a href="/">title</a></div>
  709.  
  710.  
  711. </div>
  712. </div>
  713.  
  714.  
  715.  
  716.  
  717.  
  718. </body>
  719.  
  720.  
  721.  
  722. </html>
Add Comment
Please, Sign In to add comment