alicescreed

palidinus

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