Advertisement
alicescreed

etoiilee

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