alicescreed

desxtruction

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