alicescreed

strifd

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