Advertisement
alicescreed

attendreesperer

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