Advertisement
alicescreed

aelora2

Apr 16th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.85 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 title" content="link">
  18. <meta name="text:pop2 title" content="link">
  19. <meta name="text:pop3 title" content="link">
  20.  
  21. <meta name="image:background" content="">
  22. <meta name="image:infobackground" content="">
  23.  
  24. <meta name="color:text" content="#000000">
  25. <meta name="color:scrollbar" content="#e8060b">
  26. <meta name="color:bold" content="#e8060b">
  27. <meta name="color:italic" content="#e7b872">
  28. <meta name="color:links" content="#2c3fb5">
  29. <meta name="color:borders" content="#dadada">
  30. <meta name="color:hover link" content="#494949">
  31.  
  32. <link href="https://fonts.googleapis.com/css?family=Dancing+Script|Raleway&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: 'Raleway', sans-serif;
  87. color: {color:text};
  88. font-size: 10pt;
  89. letter-spacing: 0px;
  90. background-color: #bebcbb;
  91. background-image: url('https://i.imgur.com/tnlFI0x.png');
  92. background-position: absolute;
  93. line-height: 120%;
  94. background-position: top left;
  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('https://i.imgur.com/JoOetT9.png');
  107. background-position: center;
  108. text-align: center;
  109. color: #fff;
  110. font-style: italic;
  111. font-weight: bold;
  112. box-shadow:2px 2px 5px #000;
  113. font-family: 'Dancing Script', cursive;
  114. letter-spacing: 1px;
  115. text-shadow: 2px 2px 5px #000;
  116. border: 4px {color:borders};
  117. border-style: double;
  118. padding: 15px;
  119. font-size: 20pt;
  120. margin-bottom: 5px;
  121. }
  122.  
  123. ::-webkit-scrollbar-thumb:vertical {
  124. background-color: {color:scrollbar};
  125. height:auto;
  126. }
  127.  
  128. ::-webkit-scrollbar-thumb:horizontal {
  129. background-color: {color:scrollbar};
  130. height:2px;
  131. }
  132.  
  133. ::-webkit-scrollbar {
  134. height:3px;
  135. width:3px;
  136. background-color: transparent;
  137. }
  138.  
  139.  
  140. a {
  141. text-decoration: none;
  142. color: {color:links};
  143. font-size: 18pt;
  144. line-height: 20pt;
  145. font-weight: bold;
  146. transition-duration: 0.6s;
  147. -moz-transition-duration: 0.6s;
  148. -webkit-transition-duration: 0.6s;
  149. -o-transition-duration: 0.6s;
  150. font-family: 'Dancing Script', cursive;
  151. letter-spacing: 1px;
  152. text-shadow: 1px 1px 5px #717171;
  153. }
  154.  
  155.  
  156. a:hover {
  157. text-decoration: none;
  158. filter:blur(1px);
  159. letter-spacing: 1px;
  160. padding: 2px;
  161. color: {color:hover link};
  162. transition-duration: 0.6s;
  163. -moz-transition-duration: 0.6s;
  164. -webkit-transition-duration: 0.6s;
  165. -o-transition-duration: 0.6s;
  166. font-family:'Dancing Script', cursive;
  167. }
  168.  
  169. small, sup, sub {
  170. font-size: 100%;
  171. }
  172.  
  173. b, strong {
  174. text-shadow: 1px 1px 5px #717171;
  175. padding-left: 2px;
  176. padding-right: 2px;
  177. color:{color:bold};
  178. letter-spacing: 0px;
  179. font-size: 14pt;
  180. font-family: 'Raleway', sans-serif;
  181. }
  182.  
  183. i, em {
  184. text-shadow: 1px 1px 5px #000;
  185. color:{color:italic};
  186. font-family: 'Dancing Script', cursive;
  187. letter-spacing: 1px;
  188. font-weight: bold;
  189. padding-left:5px;
  190. padding-right: 5px;
  191. padding-top: 10px;
  192. padding-bottom: 10px;
  193. font-size: 18pt;
  194. }
  195.  
  196.  
  197.  
  198.  
  199. h2 {
  200. text-shadow: 1px 1px 5px #000;
  201. color: #fff;
  202. font-family: 'Raleway', sans-serif;
  203. font-size: 16pt;
  204. font-weight: bold;
  205. line-height: 120%;
  206. letter-spacing: 1px;
  207. }
  208.  
  209.  
  210. #info {
  211. padding: 10px;
  212. border-radius: 50px;
  213. margin-top: 10px;
  214. background-image: url('https://i.imgur.com/JoOetT9.png');
  215. background-attachment:fixed;
  216. background-repeat: y-repeat;
  217. background-position: left;
  218. box-shadow: 2px 2px {color:Scrollbar};
  219. text-align: center;
  220. color: #fff;
  221. letter-spacing: 1px;
  222. transition-duration: 0.6s;
  223. -moz-transition-duration: 0.6s;
  224. -webkit-transition-duration: 0.6s;
  225. -o-transition-duration: 0.6s;
  226. font-size:18px;
  227. border: 4px {color:borders};
  228. border-style: double;
  229. }
  230.  
  231. #info a {
  232. font-size: 24pt;
  233. text-shadow: 1px 1px #000;
  234. color: {color:italic};
  235. font-weight:bold;
  236. }
  237.  
  238. #h1 {
  239. text-align: center;
  240. font-family:'Raleway', sans-serif;
  241. padding: 10px;
  242. color: {color:bold};
  243. text-shadow: 2px 2px 5px #717171;
  244. line-height: 110%;
  245. font-size: 18pt;
  246. background-position: center;
  247. margin-bottom: 5px;
  248. }
  249.  
  250. #sidebar {
  251. margin-left: 230px;
  252. width: 240px;
  253. font-size: 8pt;
  254. margin-top: 455px;
  255. position: fixed;
  256. background-color: transparent;
  257. }
  258.  
  259. #description {
  260. height:110px;
  261. padding-right: 3px;
  262. overflow: auto;
  263. }
  264.  
  265. #audio {
  266. text-align: center;
  267. font-size: 8pt;
  268. line-height: 9pt;
  269. }
  270.  
  271.  
  272. #musicinfo {
  273.  
  274. text-transform: uppercase;
  275. margin-top:10px;
  276. }
  277.  
  278. blockquote {
  279. border-right: 2px solid {color:bold};
  280. border-left: 2px solid {color:italic};
  281. border-radius: 5px;
  282. transform:rotate(0deg);
  283. background-color: #cecbc9;
  284. padding: 5px;
  285. font-size: 95%
  286. }
  287.  
  288. blockquote img {
  289. max-width: 100%;
  290. display: block;
  291. height: auto
  292. }
  293.  
  294. img {
  295. max-width: 100%;
  296. display: block;
  297. height: auto
  298. }
  299.  
  300.  
  301. ol.notes {
  302. text-align: left;
  303. list-style: upper-roman;
  304. padding: 10px;
  305.  
  306. }
  307.  
  308.  
  309. #info a:hover {
  310. color: {color:bold};
  311. }
  312.  
  313. #credit {
  314. right:10px;
  315. bottom:7px;
  316. padding:5px;
  317. font-size:10px;
  318. position:fixed;
  319. background-image: url('https://i.imgur.com/JoOetT9.png');
  320. text-align: center;
  321. font-style: italic;
  322. font-family: 'Dancing Script', cursive;
  323. letter-spacing: 1px;
  324. border: 1px {color:borders};
  325. border-style: solid;
  326. padding: 5px;
  327. font-size: 120%;
  328. margin-bottom: 5px;
  329. transition-duration: 0.6s;
  330. -moz-transition-duration: 0.6s;
  331. -webkit-transition-duration: 0.6s;
  332. -o-transition-duration: 0.6s;
  333. }
  334.  
  335.  
  336. #credit a {
  337. font-family: 'Dancing Script', cursive;
  338. color:#fff;
  339. padding:5px;
  340. letter-spacing:1px;
  341. text-decoration:none;
  342. font-weight:bold;
  343. }
  344.  
  345. #tags a {
  346. font-family: verdana;
  347. font-weight: bold;
  348. font-size: 8px;
  349. line-height: 6px;
  350. text-transform: uppercase;
  351. text-shadow: 1px 1px 1px #000;
  352. color:#fff;
  353. }
  354.  
  355. #post {
  356. width: 500px;
  357. margin-bottom: 25px;
  358. }
  359.  
  360. #posts {
  361. width: 500px;
  362. height: 550px;
  363. overflow: auto;
  364. position: absolute;
  365. background-color: transparent;
  366. margin-left:565px;
  367. margin-top: 80px;
  368. padding-right: 15px;
  369. }
  370.  
  371. #ask {
  372. border-bottom: 4px double {color:borders};
  373. width: auto;
  374. text-align: center;
  375. padding: 10px;
  376. height: auto;
  377. background-color: #000000;
  378. font-size: 15pt;
  379. }
  380.  
  381. #pa { margin-top: 10px;
  382. text-align: center;
  383. }
  384.  
  385. #pa a {
  386. text-shadow: 1px 1px 5px #000;
  387. color: #fff;
  388. font-family:'Dancing Script', cursive;
  389. font-weight: bold;
  390. font-size: 16pt;
  391. }
  392.  
  393.  
  394. @keyframes bounce {
  395. 0% { transform: translateY(0); }
  396. 100% { transform: translateY(-10px); }
  397. }
  398.  
  399. #music {
  400. animation: bounce 2s;
  401. animation-direction: alternate;
  402. animation-iteration-count: infinite;
  403. transition-duration: 0.6s;
  404. -moz-transition-duration: 0.6s;
  405. -webkit-transition-duration: 0.6s;
  406. -o-transition-duration: 0.6s;
  407. }
  408.  
  409. #navig {
  410. margin-left: 100px;
  411. margin-top: 50px;
  412. position: fixed;
  413. }
  414.  
  415. #navig a {
  416. font-size: 30pt;
  417. text-shadow: 1px 1px 4px #000;
  418. color: {color:links};
  419. transition-duration: 0.6s;
  420. -moz-transition-duration: 0.6s;
  421. -webkit-transition-duration: 0.6s;
  422. -o-transition-duration: 0.6s;
  423. }
  424.  
  425. #navig a:hover {
  426. font-size: 40pt;
  427. transition-duration: 0.6s;
  428. -moz-transition-duration: 0.6s;
  429. -webkit-transition-duration: 0.6s;
  430. -o-transition-duration: 0.6s;
  431. }
  432.  
  433. #music2 {
  434. animation: bounce 2.5s;
  435. animation-direction: alternate;
  436. animation-iteration-count: infinite;
  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. #music2 a {
  444. color:{color:italic};
  445. text-shadow: 1px 1px 4px #000;
  446. }
  447.  
  448. #music:hover {
  449. filter:blur(4px);
  450. transition-duration: 0.6s;
  451. -moz-transition-duration: 0.6s;
  452. -webkit-transition-duration: 0.6s;
  453. -o-transition-duration: 0.6s;
  454. }
  455.  
  456. #music2:hover {
  457. filter:blur(4px);
  458. transition-duration: 0.6s;
  459. -moz-transition-duration: 0.6s;
  460. -webkit-transition-duration: 0.6s;
  461. -o-transition-duration: 0.6s;
  462. }
  463.  
  464. #fade {
  465. display: none;
  466. background: #c2bab4;
  467. background-image: url('https://i.imgur.com/THC2OfV.png');
  468. background-attachment: fixed;
  469. background-repeat: no-repeat;
  470. position: fixed;
  471. left: 0;
  472. top: 0;
  473. width: 100%;
  474. height: 100%;
  475. opacity: 1;
  476. z-index: 9999;
  477. }
  478.  
  479. .popup_block{
  480. display: none;
  481. padding: 20px;
  482. position: fixed;
  483. top: 50%;
  484. left: 50%;
  485. font-size: 8pt;
  486. z-index: 99999;
  487. background-color: #bebbb9;
  488. border: 3px solid #e8070c;
  489. box-shadow: 2px 2px 5px #000;
  490. }
  491.  
  492. img.btn_close {
  493. float: right;
  494. margin: -55px -55px 0 0;
  495. }
  496.  
  497. *html #fade {
  498. position: absolute;
  499. }
  500.  
  501. *html .popup_block {
  502. position: absolute;
  503. }
  504.  
  505.  
  506. #poplinks {
  507. border-radius: 20px;
  508. color: #fff;
  509. background-position: left;
  510. text-shadow: 1px 1px 3px #000;
  511. background-image: url('https://i.imgur.com/JoOetT9.png');
  512. background-attachment:fixed;
  513. background-position: top center;
  514. background-repeat:repeat;
  515. text-align: center;
  516. font-family: verdana;
  517. border: 4px double {color:borders};
  518. padding: 2px;
  519. font-size: 8pt;
  520. font-weight: bold;
  521. text-transform: uppercase;
  522. margin-bottom: 5px;
  523. margin-top: 5px;
  524.  
  525. }
  526.  
  527. #poplinks a {
  528. text-align: center;
  529. font-family: verdana;
  530. font-size: 8pt;
  531. font-weight: bold;
  532. text-transform: uppercase;
  533. text-shadow: 1px 1px 3px #000;
  534. color: #fff;
  535. }
  536.  
  537. #poph1 {
  538. border-radius: 20px;
  539. color: #fff;
  540. background-position: center;
  541. text-shadow: 1px 1px 3px #000;
  542. background-image: url('https://i.imgur.com/JoOetT9.png');
  543. background-attachment:fixed;
  544. background-repeat:repeat;
  545. text-align: center;
  546. font-family: verdana;
  547. border: 4px double {color:borders};
  548. padding: 5px;
  549. font-size: 8pt;
  550. font-weight: bold;
  551. text-transform: uppercase;
  552. margin-bottom: 5px;
  553. margin-top: 10px;
  554. }
  555.  
  556.  
  557. </style>
  558.  
  559. </head>
  560.  
  561. <body>
  562.  
  563. <div id="navig">
  564.  
  565. <div id="music" style="margin-top: 250px; margin-left: 0px; position: fixed;">
  566. <a href="/" title="home">♪</a>
  567. </div>
  568.  
  569. <div id="music2" style="margin-top: 300px; margin-left: 60px; position: fixed;">
  570. <a href="#?w=500" rel="askme" class="poplight" title="ask">♫</a>
  571. </div>
  572.  
  573. <div id="music" style="margin-top: 280px; margin-left:140px; position: fixed;">
  574. <a href="https://blaine-devonanderson.tumblr.com/about" title="bio">♪</a>
  575. </div>
  576.  
  577. <div style="margin-left: 100px; position: fixed;">
  578. <div id="music2" style="margin-top: 320px; margin-left:120px; position: fixed;">
  579. <a href="#?w=500" rel="pop1" class="poplight" title="{text:pop2 title}">♫</a>
  580. </div>
  581.  
  582. <div id="music" style="margin-top: 270px; margin-left: 190px; position: fixed;">
  583. <a href="#?w=500" rel="pop2" class="poplight" title="{text:pop3 title}">♪</a>
  584. </div></div>
  585.  
  586. <div id="music2" style="margin-top: 210px; margin-left:360px; position: fixed;">
  587. <a href="#?w=500" rel="pop3" class="poplight" title="{text:pop4 title}">♫</a>
  588. </div>
  589.  
  590. </div>
  591.  
  592. <div id="sidebar">
  593. <div id="description">
  594. {Description}
  595. </div>
  596. <div id="pa">
  597. {block:Pagination}
  598. {block:PreviousPage}
  599. <a href="{PreviousPage}">fall</a> /
  600. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  601. {/block:NextPage}
  602. {/block:Pagination}
  603. </div></div>
  604.  
  605. <div id="posts">
  606.  
  607.  
  608. {block:Posts}<div id="post">
  609.  
  610.  
  611.  
  612. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  613.  
  614. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  615.  
  616. {Caption} {/block:Caption}{/block:Photo}
  617.  
  618. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}
  619.  
  620. {/block:Photoset}
  621.  
  622. {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}
  623.  
  624. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  625.  
  626. {Description}{/block:Description}{/block:Link}
  627.  
  628. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  629.  
  630. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  631.  
  632. {block:Audio}
  633. <div id="audio">
  634. {block:TrackName}
  635. <div id="musicinfo" style="margin-top: 5px;">
  636. {AudioPlayerGrey} <br>
  637. {TrackName} by
  638. {/block:TrackName}
  639. {block:Artist}
  640. {Artist}
  641. {/block:Artist}
  642.  
  643. </div>
  644. </div>
  645. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  646. {/block:Audio}
  647.  
  648.  
  649. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  650.  
  651. {block:Answer}
  652. <div id="ask">
  653. <center>
  654. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; border:4px double {color:borders}; box-shadow: 3px 3px #000; margin-bottom: 4px;"></center>
  655. {Asker} asked,<br>
  656. <span style="font-weight: normal;font-family: 'Raleway', sans-serif; color: {color:text}; font-size: 10pt;">" {Question} "</span>
  657. </div>
  658. {Answer}{/block:Answer}
  659.  
  660. <div id="info">
  661. <a title="{TimeAgo}" title="{TimeAgo}">♪</a> <a href="{Permalink}" title="{NoteCount} notes">♫</a> <a href="{ReblogURL}" title="reblog">♪</a>
  662. <div id="tags">
  663. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  664. {/block:Tags}{/block:HasTags}
  665. </div>
  666. </div>
  667.  
  668.  
  669. </div>
  670. {block:PostNotes}<Div style="width: 500px;">
  671.  
  672.  
  673. {PostNotes}</div>{/block:PostNotes}
  674. {/block:Posts}</div>
  675.  
  676.  
  677. <div id="credit">
  678. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  679. </div>
  680.  
  681. <div id="askme" class="popup_block">
  682. <div id="poph1">ask</div>
  683. <iframe frameborder="0"
  684. height="190"
  685. id="ask_form"
  686. scrolling="no"
  687. src="https://www.tumblr.com/ask_form/scythedren.tumblr.com"
  688. width="500">
  689. </iframe>
  690. </div>
  691.  
  692. <div id="pop1" class="popup_block">
  693. <div style="height: 500px; overflow: auto; padding-right: 10px;">
  694. <div id="poph1">cupcake ipsum</div>
  695. 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.
  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. <!--insert pop-up content html here for pop1
  703.  
  704. <div id="poph1">poph1</div> is the code for the special mini headers!!
  705. -->
  706. </div>
  707. </div>
  708.  
  709. <div id="pop2" class="popup_block">
  710. <div style="height: 500px; overflow: auto; padding-right: 10px;">
  711.  
  712. <!--insert pop-up content html here for pop2
  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="pop3" class="popup_block">
  731. <div style="height: 500px; overflow: auto; padding-right: 10px;">
  732. <!--insert pop-up content html here for pop3
  733.  
  734. <div id="poph1">poph1</div> is the code for the special mini headers!!
  735. -->
  736. <div id="poplinks"><a href="/">title</a></div>
  737. <div id="poplinks"><a href="/">title</a></div>
  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.  
  749. </div>
  750. </div>
  751.  
  752.  
  753.  
  754.  
  755.  
  756. </body>
  757.  
  758.  
  759.  
  760. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement