alicescreed

mozaikrules

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