Advertisement
alicescreed

venusborne

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