alicescreed

fr0stadvis0ry 2

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