Advertisement
alicescreed

yonah

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