Advertisement
alicescreed

kryptonizes

Mar 29th, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.93 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.  
  11. <link rel="shortcut icon" href="{Favicon}">
  12. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  13. {block:Description}<meta name="description" content="{MetaDescription}" />
  14.  
  15. {/block:Description}
  16.  
  17. <meta name="text:pop1 link title" content="link">
  18. <meta name="text:pop2 link title" content="link">
  19. <meta name="text:pop3 link title" content="link">
  20.  
  21. <meta name="image:background" content="">
  22. <meta name="image:infobackground" content="">
  23.  
  24. <meta name="color:text" content="#252525">
  25. <meta name="color:scrollbar" content="#ecb470">
  26. <meta name="color:bold" content="#f52b04">
  27. <meta name="color:italic" content="#209df7">
  28. <meta name="color:links" content="#f52b04">
  29. <meta name="color:borders" content="#dfdfdf">
  30. <meta name="color:hover link" content="#209df7">
  31.  
  32. <link href="https://fonts.googleapis.com/css?family=Lobster|Montserrat&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: 'Montserrat', sans-serif;
  87. color: {color:text};
  88. font-size: 10pt;
  89. letter-spacing: 0px;
  90. background-color: #e8e8e8;
  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 #ecb470;
  112. font-family: 'Lobster', cursive;
  113. letter-spacing: 1px;
  114. text-shadow: 2px 2px #000;
  115. border: 4px {color:borders};
  116. border-style: double;
  117. padding: 15px;
  118. font-size: 20pt;
  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: 'Lobster', cursive;
  150. letter-spacing: 1px;
  151. text-shadow: 1px 1px #ecb470;
  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:'Lobster', cursive;
  166. }
  167.  
  168. small, sup, sub {
  169. font-size: 100%;
  170. }
  171.  
  172. b, strong {
  173. text-shadow: 1px 1px #ecb470;
  174. padding-left: 2px;
  175. padding-right: 2px;
  176. color:{color:bold};
  177. letter-spacing: 0px;
  178. font-size: 14pt;
  179. font-family: 'Lobster', cursive;
  180. }
  181.  
  182. i, em {
  183. text-shadow: 1px 1px #ecb470;
  184. color:{color:italic};
  185. font-family: 'Lobster', 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 #ecb470;
  199. color: #fff;
  200. font-family: 'Lobster', 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. box-shadow: 2px 2px {color:Scrollbar};
  217. text-align: center;
  218. color: #fff;
  219. letter-spacing: 1px;
  220. transition-duration: 0.6s;
  221. -moz-transition-duration: 0.6s;
  222. -webkit-transition-duration: 0.6s;
  223. -o-transition-duration: 0.6s;
  224. font-size:18px;
  225. border: 4px {color:borders};
  226. border-style: double;
  227. }
  228.  
  229. #info a {
  230. font-size: 24pt;
  231. text-shadow: 1px 1px #000;
  232. color: #fff;
  233. font-weight:bold;
  234. }
  235.  
  236. #h1 {
  237. text-align: center;
  238. font-family: 'Lobster', cursive;
  239. padding: 10px;
  240. color: {color:bold};
  241. text-shadow: 2px 2px #ecb470;
  242. line-height: 110%;
  243. font-size: 18pt;
  244. background-position: center;
  245. margin-bottom: 5px;
  246. }
  247.  
  248. #sidebar {
  249. margin-left: 150px;
  250. width: 110px;
  251. font-size: 8pt;
  252. margin-top: 435px;
  253. position: fixed;
  254. background-color: transparent;
  255. }
  256.  
  257. #description {
  258. height:170px;
  259. padding-right: 3px;
  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: #e8e8e8;
  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: 'Lobster', 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: 'Lobster', 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: 400px;
  355. margin-bottom: 25px;
  356. }
  357.  
  358. #posts {
  359. width: 400px;
  360. height: 550px;
  361. overflow: auto;
  362. position: absolute;
  363. background-color: transparent;
  364. margin-left:300px;
  365. margin-top: 40px;
  366. padding-right: 20px;
  367. }
  368.  
  369. #ask {
  370. border-bottom: 4px double {color:borders};
  371. width: auto;
  372. text-align: center;
  373. padding: 10px;
  374. height: auto;
  375. background-color: #e8e8e8;
  376. font-size: 15pt;
  377. }
  378.  
  379. #pa { margin-top: 10px;
  380. text-align: center;
  381. }
  382.  
  383. #pa a {
  384. text-shadow: 1px 1px 5px #000;
  385. color: #fff;
  386. font-family:'Lobster', cursive;
  387. font-weight: bold;
  388. font-size: 12pt;
  389. }
  390.  
  391.  
  392. @keyframes bounce {
  393. 0% { transform: translateY(0); }
  394. 100% { transform: translateY(-10px); }
  395. }
  396.  
  397. #stars {
  398. animation: bounce 0.8s;
  399. animation-direction: alternate;
  400. animation-iteration-count: infinite;
  401. transition-duration: 0.6s;
  402. -moz-transition-duration: 0.6s;
  403. -webkit-transition-duration: 0.6s;
  404. -o-transition-duration: 0.6s;
  405. }
  406.  
  407. #navig {
  408. margin-left: 800px;
  409. position: fixed;
  410. }
  411.  
  412. #navig a {
  413. font-size: 40pt;
  414. color: #fff;
  415. }
  416.  
  417. #stars2 {
  418. animation: bounce 0.9s;
  419. animation-direction: alternate;
  420. animation-iteration-count: infinite;
  421. transition-duration: 0.6s;
  422. -moz-transition-duration: 0.6s;
  423. -webkit-transition-duration: 0.6s;
  424. -o-transition-duration: 0.6s;
  425. }
  426.  
  427. #stars:hover {
  428. filter:blur(4px);
  429. transition-duration: 0.6s;
  430. -moz-transition-duration: 0.6s;
  431. -webkit-transition-duration: 0.6s;
  432. -o-transition-duration: 0.6s;
  433. }
  434.  
  435. #stars2:hover {
  436. filter:blur(4px);
  437. transition-duration: 0.6s;
  438. -moz-transition-duration: 0.6s;
  439. -webkit-transition-duration: 0.6s;
  440. -o-transition-duration: 0.6s;
  441. }
  442.  
  443. #fade {
  444. display: none;
  445. background: #1c9bf8;
  446. position: fixed;
  447. left: 0;
  448. top: 0;
  449. width: 100%;
  450. height: 100%;
  451. opacity: .50;
  452. z-index: 9999;
  453. }
  454.  
  455. .popup_block{
  456. display: none;
  457. padding: 20px;
  458. position: fixed;
  459. top: 50%;
  460. left: 50%;
  461. font-size: 8pt;
  462. z-index: 99999;
  463. background-color: #f7f7f7;
  464. border: 3px solid #ed4019;
  465. box-shadow: 2px 2px 2px #219ef7;
  466. }
  467.  
  468. img.btn_close {
  469. float: right;
  470. margin: -55px -55px 0 0;
  471. }
  472.  
  473. *html #fade {
  474. position: absolute;
  475. }
  476.  
  477. *html .popup_block {
  478. position: absolute;
  479. }
  480.  
  481.  
  482. #poplinks {
  483. border-radius: 20px;
  484. color: #fff;
  485. background-position: left;
  486. text-shadow: 1px 1px 3px #000;
  487. background-image: url('{image:infobackground}');
  488. background-attachment:fixed;
  489. background-position: top center;
  490. background-repeat:repeat;
  491. text-align: center;
  492. font-family: verdana;
  493. border: 4px double {color:borders};
  494. padding: 2px;
  495. font-size: 8pt;
  496. font-weight: bold;
  497. text-transform: uppercase;
  498. margin-bottom: 5px;
  499. margin-top: 5px;
  500.  
  501. }
  502.  
  503. #poplinks a {
  504. text-align: center;
  505. font-family: verdana;
  506. font-size: 8pt;
  507. font-weight: bold;
  508. text-transform: uppercase;
  509. text-shadow: 1px 1px 3px #000;
  510. color: #fff;
  511. }
  512.  
  513. #poph1 {
  514. border-radius: 20px;
  515. color: #fff;
  516. background-position: center;
  517. text-shadow: 1px 1px 3px #000;
  518. background-image: url('{image:infobackground}');
  519. background-attachment:fixed;
  520. background-repeat:repeat;
  521. text-align: center;
  522. font-family: verdana;
  523. border: 4px double {color:borders};
  524. padding: 5px;
  525. font-size: 8pt;
  526. font-weight: bold;
  527. text-transform: uppercase;
  528. margin-bottom: 5px;
  529. margin-top: 10px;
  530. }
  531.  
  532.  
  533. </style>
  534.  
  535. </head>
  536.  
  537. <body>
  538.  
  539. <div id="navig">
  540.  
  541. <div id="stars" style="margin-top: 300px; margin-left: 10px; position: fixed;">
  542. <a href="/" title="home">✯</a>
  543. </div>
  544.  
  545. <div id="stars2" style="margin-top: 280px; margin-left: 100px; position: fixed;">
  546. <a href="#?w=400" rel="askme" class="poplight" title="ask">✯</a>
  547. </div>
  548.  
  549. <div id="stars" style="margin-top: 320px; margin-left: 190px; position: fixed;">
  550. <a href="#?w=400" rel="pop1" class="poplight" title="{text:pop1 title}">✯</a>
  551. </div>
  552.  
  553. <div style="margin-left: 250px; margin-top: 20px; position: fixed;">
  554. <div id="stars2" style="margin-top: 520px; margin-left:20px; position: fixed;">
  555. <a href="#?w=400" rel="pop2" class="poplight" title="{text:pop2 title}">✯</a>
  556. </div>
  557.  
  558. <div id="stars" style="margin-top: 550px; margin-left: 120px; position: fixed;">
  559. <a href="#?w=400" rel="pop3" class="poplight" title="{text:pop3 title}">✯</a>
  560. </div></div>
  561.  
  562. </div>
  563.  
  564. <div id="sidebar">
  565. <div id="description">
  566. {Description}
  567. </div>
  568. <div id="pa">
  569. {block:Pagination}
  570. {block:PreviousPage}
  571. <a href="{PreviousPage}">fall</a> /
  572. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  573. {/block:NextPage}
  574. {/block:Pagination}
  575. </div></div>
  576.  
  577. <div id="posts">
  578.  
  579.  
  580. {block:Posts}<div id="post">
  581.  
  582.  
  583.  
  584. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  585.  
  586. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  587.  
  588. {Caption} {/block:Caption}{/block:Photo}
  589.  
  590. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  591.  
  592. {/block:Photoset}
  593.  
  594. {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}
  595.  
  596. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  597.  
  598. {Description}{/block:Description}{/block:Link}
  599.  
  600. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  601.  
  602. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  603.  
  604. {block:Audio}
  605. <div id="audio">
  606. {block:TrackName}
  607. <div id="musicinfo" style="margin-top: 5px;">
  608. {AudioPlayerGrey} <br>
  609. {TrackName} by
  610. {/block:TrackName}
  611. {block:Artist}
  612. {Artist}
  613. {/block:Artist}
  614.  
  615. </div>
  616. </div>
  617. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  618. {/block:Audio}
  619.  
  620.  
  621. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  622.  
  623. {block:Answer}
  624. <div id="ask">
  625. <center>
  626. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; border:4px double {color:borders}; box-shadow: 3px 3px #ecb470; margin-bottom: 4px;"></center>
  627. {Asker} asked,<br>
  628. <span style="font-weight: normal;font-family: 'Montserrat', sans-serif; color: {color:text}; font-size: 10pt;">" {Question} "</span>
  629. </div>
  630. {Answer}{/block:Answer}
  631.  
  632. <div id="info">
  633. <a title="{TimeAgo}" title="{TimeAgo}">✯</a> <a href="{Permalink}" title="{NoteCount} notes">✯</a> <a href="{ReblogURL}" title="reblog">✯</a>
  634. <div id="tags">
  635. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  636. {/block:Tags}{/block:HasTags}
  637. </div>
  638. </div>
  639.  
  640.  
  641. </div>
  642. {block:PostNotes}<Div style="width: 400px;">
  643.  
  644.  
  645. {PostNotes}</div>{/block:PostNotes}
  646. {/block:Posts}</div>
  647.  
  648.  
  649. <div id="credit">
  650. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  651. </div>
  652.  
  653. <div id="askme" class="popup_block">
  654. <div id="poph1">ask</div>
  655. <iframe frameborder="0"
  656. height="190"
  657. id="ask_form"
  658. scrolling="no"
  659. src="https://www.tumblr.com/ask_form/kryptonizes.tumblr.com"
  660. width="400">
  661. </iframe>
  662. </div>
  663.  
  664. <div id="pop1" class="popup_block">
  665. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  666. <div id="poph1">cupcake ipsum</div>
  667. 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.
  668.  
  669. <div id="poph1">cupcake ipsum</div>
  670. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  671.  
  672. <div id="poph1">cupcake ipsum</div>
  673. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  674. <!--insert pop-up content html here for pop1
  675.  
  676. <div id="poph1">poph1</div> is the code for the special mini headers!!
  677. -->
  678. </div>
  679. </div>
  680.  
  681. <div id="pop2" class="popup_block">
  682. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  683.  
  684. <!--insert pop-up content html here for pop2
  685.  
  686. <div id="poph1">poph1</div> is the code for the special mini headers!!
  687. -->
  688.  
  689. <div id="poph1">cupcake ipsum</div>
  690. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  691.  
  692. <div id="poph1">cupcake ipsum</div>
  693. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  694.  
  695. <div id="poph1">cupcake ipsum</div>
  696. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  697.  
  698. </div>
  699. </div>
  700.  
  701. <div id="pop3" class="popup_block">
  702. <div style="height: 400px; overflow: auto; padding-right: 10px;">
  703. <!--insert pop-up content html here for pop3
  704.  
  705. <div id="poph1">poph1</div> is the code for the special mini headers!!
  706. -->
  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>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement