Advertisement
RageQxeen

Fix for Ichor

Sep 22nd, 2020
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.66 KB | None | 0 0
  1. <html>
  2. <body>
  3. <script defer>
  4. window.onload = function() {
  5. var isCtrl = false;
  6. document.onkeyup=function(e)
  7. {
  8. if(e.which == 17)
  9. isCtrl=false;
  10. }
  11. document.onkeydown=function(e)
  12. {
  13. if(e.which == 17)
  14. isCtrl=true;
  15. if((e.which == 85) || (e.which == 67) && (isCtrl == true))
  16. {
  17. return false;
  18. }
  19. }
  20. var isNS = (navigator.appName == "Netscape") ? 1 : 0;
  21. if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
  22. function mischandler(){
  23. return false;
  24. }
  25. function mousehandler(e){
  26. var myevent = (isNS) ? e : event;
  27. var eventbutton = (isNS) ? myevent.which : myevent.button;
  28. if((eventbutton==2)||(eventbutton==3)) return false;
  29. }
  30. document.oncontextmenu = mischandler;
  31. document.onmousedown = mousehandler;
  32. document.onmouseup = mousehandler;
  33.  
  34. if (document.addEventListener) { // IE >= 9; other browsers
  35. document.addEventListener('contextmenu', function(e) {
  36. alert(" Try asking RageQxeen for her codes instead."); //here you draw your own menu
  37. e.preventDefault();
  38. }, false);
  39. } else { // IE < 9
  40. document.attachEvent('oncontextmenu', function() {
  41. alert("O sun, abide to death.");
  42. window.event.returnValue = false;
  43. });
  44. }
  45. };
  46. </script>
  47. <style type="text/css">
  48.  
  49. @import url(https://fonts.googleapis.com/css?family=Cinzel+Decorative|Quicksand|Cinzel|Libre+Baskerville);
  50.  
  51. html, body {
  52. background-color: #a30500;
  53. background-image: url("https://www.transparenttextures.com/patterns/brushed-alum-dark.png");
  54. }
  55.  
  56. ::-webkit-scrollbar-button:vertical:{
  57. background-color: #transparent;}
  58.  
  59. ::-webkit-scrollbar-thumb:vertical {
  60. background-color:#transparent;
  61. height:150px;}
  62.  
  63. ::-webkit-scrollbar-thumb:horizontal {
  64. background-color:#transparent;
  65. height:60px;}
  66.  
  67.  
  68. ::-webkit-scrollbar {
  69. height:60px;
  70. width:5px;
  71. background-color:#transparent;}
  72.  
  73.  
  74. .name {position: absolute;
  75. font-family: 'Cinzel Decorative';
  76. color: #fff;
  77. font-size: 3vw;
  78. top: 23vw;
  79. right: -13vw;
  80. width: 40vw;
  81. height: 5vw;
  82. border: 0px solid #000;
  83. text-align: justify;
  84. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  85. overflow: auto;
  86. padding:5px 5px 5px 5px;
  87. transform: rotate(-270deg);
  88. filter: drop-shadow(30px 10px 4px #000);
  89. z-index: 2;
  90. }
  91.  
  92. .title { background: transparent;
  93. background:url('https://media1.tenor.com/images/f77918cf7fea93236851ba9609e243bc/tenor.gif?itemid=11614652') 50px 50px repeat;
  94. background-position: center;
  95. position: absolute;
  96. font-family: 'Cinzel Decorative';
  97. font-size: 3vw;
  98. top: 23vw;
  99. right: -13vw;
  100. width: 40vw;
  101. height: 5vw;
  102. text-align: justify;
  103. padding:5px 5px 5px 5px;
  104. -webkit-text-fill-color: transparent;
  105. -webkit-background-clip: text;
  106. transform: rotate(-270deg);
  107. z-index: 3;
  108. }
  109.  
  110. #stats {
  111. display: inline-block;
  112. background-color:#c0c0c0;
  113. width: 10vw;
  114. height: 100%;
  115. margin:auto;
  116. position: absolute;
  117. padding: 5px;
  118. left: 64.1vw;
  119. bottom: 0vw;
  120. z-index:1;
  121. overflow: hidden;
  122. border: #000000 solid 2px;
  123. transition: 0.8s linear;
  124. -o-transition: 0.8s linear;
  125. -ms-transition: 0.8s linear;
  126. -moz-transition: 0.8s linear;
  127. -webkit-transition: 0.8s linear;
  128. }
  129.  
  130. #stats:hover {
  131. display: inline-block;
  132. width: 26vw;
  133. z-index: 2;
  134. transition: 0.8s linear;
  135. -o-transition: 0.8s linear;
  136. -ms-transition: 0.8s linear;
  137. -moz-transition: 0.8s linear;
  138. -webkit-transition: 0.8s linear;
  139. }
  140.  
  141. #banner {
  142. width: 10vw;
  143. margin: 0px;
  144. border: none;
  145. height: 100%;
  146. background-color:transparent;
  147. position: absolute;
  148. left: 64.1vw;
  149. bottom: 0vw;
  150. padding: 5px;
  151. border: 2px solid #000;
  152. background-image:url("BANNERIMAGE");
  153. background-repeat:no-repeat;
  154. background-position: center;
  155. background-size: cover;
  156. opacity: 0.8;
  157. -webkit-animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  158. animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  159. }
  160.  
  161. #powers {
  162. display: inline-block;
  163. background-color:#c0c0c0;
  164. width: 10vw;
  165. height: 100%;
  166. margin:auto;
  167. position: absolute;
  168. padding: 5px;
  169. left: 53.4vw;
  170. bottom: 0vw;
  171. z-index:3;
  172. overflow: hidden;
  173. border: #000000 solid 2px;
  174. transition: 0.8s linear;
  175. -o-transition: 0.8s linear;
  176. -ms-transition: 0.8s linear;
  177. -moz-transition: 0.8s linear;
  178. -webkit-transition: 0.8s linear;
  179. }
  180.  
  181. #powers:hover {
  182. display: inline-block;
  183. width: 37vw;
  184. z-index: 4;
  185. transition: 0.8s linear;
  186. -o-transition: 0.8s linear;
  187. -ms-transition: 0.8s linear;
  188. -moz-transition: 0.8s linear;
  189. -webkit-transition: 0.8s linear;
  190. }
  191.  
  192. #banner2 {
  193. width: 10vw;
  194. margin: 0px;
  195. border: none;
  196. height: 100%;
  197. background-color:transparent;
  198. position: absolute;
  199. left: 53.4vw;
  200. bottom: 0vw;
  201. padding: 5px;
  202. border: 2px solid #000;
  203. background-image:url("BANNERIMAGE");
  204. background-repeat:no-repeat;
  205. background-position: center;
  206. background-size: cover;
  207. opacity: 0.8;
  208. -webkit-animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.8s both;
  209. animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.8s both;
  210. }
  211.  
  212. #history {
  213. display: inline-block;
  214. background-color:#c0c0c0;
  215. width: 10vw;
  216. height: 100%;
  217. margin:auto;
  218. position: absolute;
  219. padding: 5px;
  220. left: 42.7vw;
  221. bottom: 0vw;
  222. z-index:1;
  223. overflow: hidden;
  224. border: #000000 solid 2px;
  225. transition: 0.4s linear;
  226. -o-transition: 0.4s linear;
  227. -ms-transition: 0.4s linear;
  228. -moz-transition: 0.4s linear;
  229. -webkit-transition: 0.4s linear;
  230. }
  231.  
  232. #history:hover {
  233. display: inline-block;
  234. width: 47.5vw;
  235. z-index: 2;
  236. transition: 0.4s linear;
  237. -o-transition: 0.4s linear;
  238. -ms-transition: 0.4s linear;
  239. -moz-transition: 0.4s linear;
  240. -webkit-transition: 0.4s linear;
  241. }
  242.  
  243. #banner3 {
  244. width: 10vw;
  245. margin: 0px;
  246. border: none;
  247. height: 100%;
  248. background-color:transparent;
  249. position: absolute;
  250. left: 42.7vw;
  251. bottom: 0vw;
  252. padding: 5px;
  253. border: 2px solid #000;
  254. background-image:url("BANNERIMAGE");
  255. background-repeat:no-repeat;
  256. background-position: right;
  257. background-size: cover;
  258. opacity: 0.8;
  259. -webkit-animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.6s both;
  260. animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.6s both;
  261. }
  262.  
  263. #ooc {
  264. display: inline-block;
  265. background-color:#c0c0c0;
  266. width: 10vw;
  267. height: 100%;
  268. margin:auto;
  269. position: absolute;
  270. padding: 5px;
  271. left: 32.05vw;
  272. bottom: 0vw;
  273. z-index:1;
  274. overflow: hidden;
  275. border: #000000 solid 2px;
  276. transition: 0.4s linear;
  277. -o-transition: 0.4s linear;
  278. -ms-transition: 0.4s linear;
  279. -moz-transition: 0.4s linear;
  280. -webkit-transition: 0.4s linear;
  281. }
  282.  
  283. #ooc:hover {
  284. display: inline-block;
  285. width: 58vw;
  286. z-index: 2;
  287. transition: 0.4s linear;
  288. -o-transition: 0.4s linear;
  289. -ms-transition: 0.4s linear;
  290. -moz-transition: 0.4s linear;
  291. -webkit-transition: 0.4s linear;
  292. }
  293.  
  294. #banner4 {
  295. width: 10vw;
  296. margin: 0px;
  297. border: none;
  298. height: 100%;
  299. background-color:transparent;
  300. position: absolute;
  301. left: 32.05vw;
  302. bottom: 0vw;
  303. padding: 5px;
  304. border: 2px solid #000;
  305. background-image:url("BANNERIMAGE");
  306. background-repeat:no-repeat;
  307. background-position: center;
  308. background-size: cover;
  309. opacity: 0.8;
  310. -webkit-animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2.4s both;
  311. animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2.4s both;
  312. }
  313.  
  314. #random1 {
  315. display: inline-block;
  316. background-color:#c0c0c0;
  317. width: 10vw;
  318. height: 100%;
  319. margin:auto;
  320. position: absolute;
  321. padding: 5px;
  322. left: 21.35vw;
  323. bottom: 0vw;
  324. z-index:1;
  325. overflow: hidden;
  326. border: #000000 solid 2px;
  327. transition: 0.4s linear;
  328. -o-transition: 0.4s linear;
  329. -ms-transition: 0.4s linear;
  330. -moz-transition: 0.4s linear;
  331. -webkit-transition: 0.4s linear;
  332. }
  333.  
  334. #random1:hover {
  335. display: inline-block;
  336. width: 69vw;
  337. z-index: 2;
  338. transition: 0.4s linear;
  339. -o-transition: 0.4s linear;
  340. -ms-transition: 0.4s linear;
  341. -moz-transition: 0.4s linear;
  342. -webkit-transition: 0.4s linear;
  343. }
  344.  
  345. #banner5 {
  346. width: 10vw;
  347. margin: 0px;
  348. border: none;
  349. height: 100%;
  350. background-color:transparent;
  351. position: absolute;
  352. left: 21.35vw;
  353. bottom: 0vw;
  354. padding: 5px;
  355. border: 2px solid #000;
  356. background-image:url("BANNERIMAGE");
  357. background-repeat:no-repeat;
  358. background-position: center;
  359. background-size: cover;
  360. opacity: 0.8;
  361. -webkit-animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 3.2s both;
  362. animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 3.2s both;
  363. }
  364.  
  365. #random2 {
  366. display: inline-block;
  367. background-color:#c0c0c0;
  368. width: 10vw;
  369. height: 100%;
  370. margin:auto;
  371. position: absolute;
  372. padding: 5px;
  373. left: 10.7vw;
  374. bottom: 0vw;
  375. z-index:1;
  376. overflow: hidden;
  377. border: #000000 solid 2px;
  378. transition: 0.4s linear;
  379. -o-transition: 0.4s linear;
  380. -ms-transition: 0.4s linear;
  381. -moz-transition: 0.4s linear;
  382. -webkit-transition: 0.4s linear;
  383. }
  384.  
  385. #random2:hover {
  386. display: inline-block;
  387. width: 79.5vw;
  388. z-index: 2;
  389. transition: 0.4s linear;
  390. -o-transition: 0.4s linear;
  391. -ms-transition: 0.4s linear;
  392. -moz-transition: 0.4s linear;
  393. -webkit-transition: 0.4s linear;
  394. }
  395.  
  396. #banner6 {
  397. width: 10vw;
  398. margin: 0px;
  399. border: none;
  400. height: 100%;
  401. background-color:transparent;
  402. position: absolute;
  403. left: 10.7vw;
  404. bottom: 0vw;
  405. padding: 5px;
  406. border: 2px solid #000;
  407. background-image:url("BANNERIMAGE");
  408. background-repeat:no-repeat;
  409. background-position: center;
  410. background-size: cover;
  411. opacity: 0.8;
  412. -webkit-animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 4s both;
  413. animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 4s both;
  414. }
  415.  
  416. #random3 {
  417. display: inline-block;
  418. background-color:#c0c0c0;
  419. width: 10vw;
  420. height: 100%;
  421. margin:auto;
  422. position: absolute;
  423. padding: 5px;
  424. left: 0vw;
  425. bottom: 0vw;
  426. z-index:1;
  427. overflow: hidden;
  428. border: #000000 solid 2px;
  429. transition: 0.4s linear;
  430. -o-transition: 0.4s linear;
  431. -ms-transition: 0.4s linear;
  432. -moz-transition: 0.4s linear;
  433. -webkit-transition: 0.4s linear;
  434. }
  435.  
  436. #random3:hover {
  437. display: inline-block;
  438. width: 90vw;
  439. z-index: 2;
  440. transition: 0.4s linear;
  441. -o-transition: 0.4s linear;
  442. -ms-transition: 0.4s linear;
  443. -moz-transition: 0.4s linear;
  444. -webkit-transition: 0.4s linear;
  445. }
  446.  
  447. #banner7 {
  448. width: 10vw;
  449. margin: 0px;
  450. border: none;
  451. height: 100%;
  452. background-color:transparent;
  453. position: absolute;
  454. left: 0vw;
  455. bottom: 0vw;
  456. padding: 5px;
  457. border: 2px solid #000;
  458. background-image:url("BANNERIMAGE");
  459. background-repeat:no-repeat;
  460. background-position: center;
  461. background-size: cover;
  462. opacity: 0.8;
  463. -webkit-animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 4.6s both;
  464. animation: slide-in-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 4.6s both;
  465. }
  466.  
  467. .fade {
  468. opacity: 0;
  469. -webkit-transition: opacity 2s ease-in-out;
  470. -moz-transition: opacity 2s ease-in-out;
  471. -o-transition: opacity 2s ease-in-out;
  472. -ms-transition: opacity 2s ease-in-out;
  473. transition: opacity 2s ease-in-out;
  474. }
  475.  
  476. .fade:hover {
  477. opacity: 1;
  478. }
  479.  
  480. .beats { position: absolute;
  481. z-index:99;
  482. right: 0vw;
  483. top: 0vw;
  484. width: 50px; height: 50px;
  485. background-color: transparent;
  486. opacity: 1;
  487. z-index: 999;
  488. }
  489.  
  490. .beats img { position: absolute;
  491. right: 0; top: 0;
  492. left: 0; bottom: 0;
  493. margin: auto;
  494. width: 50px; height: 50px;
  495. }
  496.  
  497. .audio {
  498. width: 50px; height: 50px;
  499. margin-left: -8px;
  500. margin-top: -5px;
  501. overflow: hidden;
  502. opacity: 0;
  503. }
  504.  
  505.  
  506. p {
  507. font-family: 'Quicksand', cursive;
  508. font-size: 15px;
  509. color: #000;
  510. }
  511. i{color: #443a59;}
  512. b{color: #000;}
  513. a{color: #444; text-decoration: none;}
  514. h1{
  515. background: url('HEADERIMAGE');
  516. background-size: cover;
  517. background-position: center;
  518. background-repeat: no-repeat;
  519. text-align: center;
  520. border-radius: 15px;
  521. font-size: 4vw;
  522. height: 5vw;
  523. border-radius: 15px;
  524. border: 2px solid #000;
  525. font-family: 'Cinzel', cursive;
  526. color: #000;
  527. text-shadow: 1px 1px 0 #c0c0c0, -1px -1px 0 #c0c0c0, -1px 1px 0 #c0c0c0, 1px -1px 0 #c0c0c0;
  528. line-height: 1.5;
  529. }
  530. h2{
  531. background: url('HEADERIMAGE');
  532. background-size: cover;
  533. background-position: center;
  534. text-align: center;
  535. border-radius: 15px;
  536. font-size: 4vw;
  537. height: 5vw;
  538. border-radius: 15px;
  539. border: 2px solid #000;
  540. font-family: 'Cinzel', cursive;
  541. color: #000;
  542. text-shadow: 1px 1px 0 #c0c0c0, -1px -1px 0 #c0c0c0, -1px 1px 0 #c0c0c0, 1px -1px 0 #c0c0c0;
  543. line-height: 1.5;
  544. }
  545. h3{
  546. background: url('HEADERIMAGE');
  547. background-size: cover;
  548. background-position: bottom;
  549. text-align: center;
  550. border-radius: 15px;
  551. font-size: 4vw;
  552. height: 5vw;
  553. border-radius: 15px;
  554. border: 2px solid #000;
  555. font-family: 'Cinzel', cursive;
  556. color: #000;
  557. text-shadow: 1px 1px 0 #c0c0c0, -1px -1px 0 #c0c0c0, -1px 1px 0 #c0c0c0, 1px -1px 0 #c0c0c0;
  558. line-height: 1.5;
  559. }
  560. h4{
  561. background: url('HEADERIMAGE');
  562. background-size: contain;
  563. background-color: #000;
  564. background-repeat: no-repeat;
  565. background-position: left;
  566. text-align: center;
  567. border-radius: 15px;
  568. font-size: 4vw;
  569. height: 5vw;
  570. font-family: 'Cinzel', cursive;
  571. color: #000;
  572. text-shadow: 1px 1px 0 #c0c0c0, -1px -1px 0 #c0c0c0, -1px 1px 0 #c0c0c0, 1px -1px 0 #c0c0c0;
  573. line-height: 1.5;
  574. }
  575. h5{
  576. background: url('HEADERIMAGE');
  577. background-size: cover;
  578. background-position: center;
  579. text-align: center;
  580. border-radius: 15px;
  581. font-size: 4vw;
  582. height: 5vw;
  583. font-family: 'Cinzel', cursive;
  584. color: #000;
  585. text-shadow: 1px 1px 0 #c0c0c0, -1px -1px 0 #c0c0c0, -1px 1px 0 #c0c0c0, 1px -1px 0 #c0c0c0;
  586. line-height: 1.5;
  587. }
  588. h6{border-bottom: 1px solid #000; text-align: right; font-size: 30px; font-family: 'Libre Baskerville', cursive; color: #000;}
  589.  
  590.  
  591. @-webkit-keyframes slide-in-left {
  592. 0% {
  593. -webkit-transform: translateX(-1000px);
  594. transform: translateX(-1000px);
  595. opacity: 0;
  596. }
  597. 100% {
  598. -webkit-transform: translateX(0);
  599. transform: translateX(0);
  600. opacity: 1;
  601. }
  602. }
  603. @keyframes slide-in-left {
  604. 0% {
  605. -webkit-transform: translateX(-1000px);
  606. transform: translateX(-1000px);
  607. opacity: 0;
  608. }
  609. 100% {
  610. -webkit-transform: translateX(0);
  611. transform: translateX(0);
  612. opacity: 1;
  613. }
  614. }
  615. </style>
  616.  
  617. <div class="beats"> <img src="https://simpleicon.com/wp-content/uploads/music-note-5-256x256.png">
  618. <div class="audio">
  619. <audio controls="" loop="">
  620. <source src="MUSICLINK">
  621. </audio>
  622. </div> </div>
  623.  
  624. <div class="name">TITLE</div>
  625. <div class="title">TITLE</div>
  626.  
  627. <div id="banner"></div>
  628. <div id="stats" class="fade">
  629. <div style="width: 26vw; height: 50vw; overflow-y: hidden;">
  630.  
  631. <a name="one"></a>
  632. <div style="width: 26vw; height: 50vw; overflow: auto;" align="left">
  633. <br><br>
  634. <h1>Statistics</h1>
  635. <p>
  636. <font style=float:left><b>Name</b></font> <font style=float:right> </font><br>
  637. <font style=float:left><b>Nickname</b></font> <font style=float:right><a title=" ">hover</a></font><br>
  638. <font style=float:left><b>Gender</b></font> <font style=float:right> </font><br>
  639. <font style=float:left><b>Apparent Age</b></font> <font style=float:right> </font><br>
  640. <font style=float:left><b>Race</b></font> <font style=float:right> </font><br><br>
  641. <font style=float:left><b>Height</b></font> <font style=float:right> </font><br>
  642. <font style=float:left><b>Weight</b></font> <font style=float:right> </font><br>
  643. <font style=float:left><b>Tresses</b></font> <font style=float:right> </font><br>
  644. <font style=float:left><b>Irises</b></font> <font style=float:right> </font><br><br>
  645. <font style=float:left><b>Position/Dom-Sub</b></font><font style=float:right> </font><br>
  646. <font style=float:left><b>Marital</b></font> <font style=float:right> </font><br>
  647. <font style=float:left><b>Orientation</b></font> <font style=float:right> </font><br><br>
  648. <font style=float:left><b>Physical</b></font> <font style=float:right> </font><br><br>
  649. </p>
  650. </div>
  651. </div>
  652. </div>
  653.  
  654. <div id="banner2"></div>
  655. <div id="powers" class="fade">
  656. <div style="width: 37vw; height: 50vw; overflow-y: hidden;">
  657.  
  658. <a name="one"></a>
  659. <div style="width: 37vw; height: 50vw; overflow: auto;" align="left">
  660. <br><br>
  661. <p>
  662. <h2>Abilities</h2>
  663.  
  664. </p>
  665. </div>
  666. </div>
  667. </div>
  668.  
  669. <div id="banner3"></div>
  670. <div id="history" class="fade">
  671. <div style="width: 47.5vw; height: 50vw; overflow-y: hidden;">
  672.  
  673. <a name="one"></a>
  674. <div style="width: 47.5vw; height: 50vw; overflow: auto;" align="left">
  675. <br><br>
  676. <p>
  677. <h3>History</h3>
  678.  
  679. </p>
  680. </div>
  681. </div>
  682. </div>
  683.  
  684. <div id="banner4"></div>
  685. <div id="ooc" class="fade">
  686. <div style="width: 58vw; height: 50vw; overflow-y: hidden;">
  687.  
  688. <a name="one"></a>
  689. <div style="width: 58vw; height: 50vw; overflow: auto;" align="left">
  690. <br><br>
  691. <p>
  692.  
  693. </p>
  694. </div>
  695. </div>
  696. </div>
  697.  
  698. <div id="banner5"></div>
  699. <div id="random1" class="fade">
  700. <div style="width: 69vw; height: 50vw; overflow-y: hidden;">
  701.  
  702. <a name="one"></a>
  703. <div style="width: 69vw; height: 50vw; overflow: auto;" align="left">
  704. <br><br>
  705. <p>
  706.  
  707. </p>
  708. </div>
  709. </div>
  710. </div>
  711.  
  712. <div id="banner6"></div>
  713. <div id="random2" class="fade">
  714. <div style="width: 79.5vw; height: 50vw; overflow-y: hidden;">
  715.  
  716. <a name="one"></a>
  717. <div style="width: 79.5vw; height: 50vw; overflow: auto;" align="left">
  718. <br><br>
  719. <p>
  720.  
  721. </p>
  722. </div>
  723. </div>
  724. </div>
  725.  
  726. <div id="banner7"></div>
  727. <div id="random3" class="fade">
  728. <div style="width: 90vw; height: 50vw; overflow-y: hidden;">
  729.  
  730. <a name="one"></a>
  731. <div style="width: 90vw; height: 50vw; overflow: auto;" align="left">
  732. <br><br>
  733. <p>
  734. <h4>Out of Character</h4>
  735. <b>00</b>. Code made by <a target="_blank" href="/profile.php?user=RageQxeen" target="_blank">RageQxeen</a>, do not steal.<br><br>
  736. <b>01</b>. OOC.<br><br>
  737. <b>02</b>. OOC.<br><br>
  738. <b>03</b>. OOC.<br><br>
  739. <b>04</b>. OOC.<br><br>
  740. <b>05</b>. OOC.<br><br>
  741. </p>
  742. </div>
  743. </div>
  744. </div>
  745. </body>
  746. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement