Advertisement
RageQxeen

Tiger Lily

Sep 29th, 2022
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.99 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. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  48. <script>
  49. $(document).ready(function(){
  50. $(".button").click(function(){
  51. $("#page").animate({opacity: "0"}, 'slow');
  52. });
  53. });
  54. </script>
  55. <style type="text/css">
  56.  
  57. @import url(https://fonts.googleapis.com/css?family=Staatliches|Bebas+Neue|Playball|Anybody);
  58.  
  59. html, body {
  60. background: #1a2a6c; /* fallback for old browsers */
  61. background: -webkit-linear-gradient(to right, #fdbb2d, #b21f1f, #1a2a6c); /* Chrome 10-25, Safari 5.1-6 */
  62. background: linear-gradient(to right, #fdbb2d, #b21f1f, #1a2a6c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  63. }
  64.  
  65. ::-webkit-scrollbar-button:vertical:{
  66. background-color: #transparent;}
  67.  
  68. ::-webkit-scrollbar-thumb:vertical {
  69. background-color:#transparent;
  70. height:150px;}
  71.  
  72. ::-webkit-scrollbar-thumb:horizontal {
  73. background-color:#transparent;
  74. height:60px;}
  75.  
  76.  
  77. ::-webkit-scrollbar {
  78. height:60px;
  79. width:5px;
  80. background-color:#transparent;}
  81.  
  82. #page {
  83. background-color: #222;
  84. background-image: url("https://i.imgur.com/TrsmfvJ.png");
  85. background-size: fill;
  86. background-repeat: no-repeat;
  87. background-position: bottom;
  88. width: 100vw;
  89. height: 99vw;
  90. margin:auto;
  91. position: absolute;
  92. right: 0vw;
  93. bottom: 0vw;
  94. z-index:11;
  95. }
  96.  
  97. #introimage {
  98. width: 40vw;
  99. margin: 0px;
  100. border: none;
  101. height: 42vw;
  102. background-color:transparent;
  103. position: absolute;
  104. right: 0vw;
  105. bottom: 0vw;
  106. background-image:url("https://i.imgur.com/tSrjMJR.png");
  107. background-repeat:no-repeat;
  108. background-position: bottom;
  109. background-size: 100%;
  110. z-index: 5;
  111. }
  112.  
  113. #introcontainer {
  114. background-color: #ddafa5;
  115. background-image: url("https://www.transparenttextures.com/patterns/wild-flowers.png");
  116. width: 55vw;
  117. height: 31vw;
  118. margin:auto;
  119. position: absolute;
  120. padding: 5px;
  121. left: 19vw;
  122. bottom: 4vw;
  123. opacity: 1;
  124. z-index:2;
  125. box-shadow: 0px 5px 10px #000;
  126. }
  127.  
  128. .border-gradient {
  129. border-width: 2px;
  130. border-style: solid;
  131. border-image: linear-gradient(to right, #48D1CC, #D22B2B) 1;
  132. }
  133.  
  134. .border-left-gradient {
  135. border-width: 0px;
  136. border-right: 2px;
  137. border-left: 2px;
  138. border-style: solid;
  139. border-image: linear-gradient(to right, #48D1CC, #D22B2B) 1;
  140. }
  141.  
  142. #introcontent {
  143. background-color: transparent;
  144. width: 42vw;
  145. height: 30vw;
  146. margin:auto;
  147. position: absolute;
  148. padding: 10px;
  149. font-size: 18px;
  150. font-family: 'Staatliches', cursive;
  151. color:#000;
  152. opacity: 0.98;
  153. left: .25vw;
  154. bottom: .25vw;
  155. z-index:1;
  156. }
  157.  
  158. #nav2 {
  159. background-color: transparent;
  160. width: 50vw;
  161. height: 5px;
  162. margin:auto;
  163. position: absolute;
  164. left: -3vw;
  165. top: -7vw;
  166. text-align: center;
  167. z-index: 10;
  168. }
  169.  
  170. #nav2 a, #nav2 a:link, #nav2 a:visited {
  171. display:inline-block;
  172. background: #332628;
  173. color: #332628;
  174. margin-top: 25px;
  175. margin-bottom: 0px;
  176. margin-left: 1vw;
  177. height: 100px;
  178. width: 150px;
  179. border-radius: 10px;
  180. box-shadow: 5px 5px 25px #d4dbee;
  181. -webkit-transition: 0.5s linear;
  182. -moz-transition: 0.5s linear;
  183. -o-transition: 0.5s linear;
  184. transition: 0.5s linear;
  185. }
  186.  
  187. #nav2 a:active, #nav2 a:hover {
  188. display:inline-block;
  189. height: 100px;
  190. width: 150px;
  191. border-radius: 100%;
  192. text-decoration:none;
  193. background: rgb(0,0,0,0.4);
  194. color: rgb(0,0,0,0.4);
  195. margin-left: 1vw;
  196. box-shadow: 0px 0px 5px #d4dbee;
  197. -webkit-transition: 0.5s linear;
  198. -moz-transition: 0.5s linear;
  199. -o-transition: 0.5s linear;
  200. transition: 0.5s linear;
  201. }
  202.  
  203. #icon5 {
  204. width: 150px;
  205. margin: 0px;
  206. border: none;
  207. height: 100px;
  208. background-color:transparent;
  209. position: absolute;
  210. background-image:url("https://i.imgur.com/QOmMR7o.png");
  211. background-repeat:no-repeat;
  212. background-position: center;
  213. background-size: cover;
  214. border-radius: 10px;
  215. border: 2px solid #000;
  216. filter: blur(4px) grayscale(100%);
  217. box-sizing: border-box;
  218. z-index: 11;
  219. transition: 0.5s;
  220. }
  221.  
  222. #icon5:hover {
  223. filter: blur(0px) grayscale(0%);
  224. background-position: 40% 10%;
  225. }
  226.  
  227. #icon6 {
  228. width: 150px;
  229. margin: 0px;
  230. border: none;
  231. height: 100px;
  232. background-color:transparent;
  233. position: absolute;
  234. background-image:url("https://i.imgur.com/vT7DWtE.png");
  235. background-repeat:no-repeat;
  236. background-position: bottom;
  237. background-size: cover;
  238. border-radius: 10px;
  239. border: 2px solid #000;
  240. z-index: 11;
  241. filter: blur(4px) grayscale(100%);
  242. box-sizing: border-box;
  243. transition: 0.5s;
  244. }
  245.  
  246. #icon6:hover {
  247. filter: blur(0px) grayscale(0%);
  248. background-position: center;
  249. }
  250.  
  251. #icon7 {
  252. width: 150px;
  253. margin: 0px;
  254. border: none;
  255. height: 100px;
  256. background-color:transparent;
  257. position: absolute;
  258. background-image:url("https://i.imgur.com/yYtIs3z.jpeg");
  259. background-repeat:no-repeat;
  260. background-position: bottom;
  261. background-size: cover;
  262. border-radius: 10px;
  263. border: 2px solid #000;
  264. z-index: 11;
  265. filter: blur(4px) grayscale(100%);
  266. box-sizing: border-box;
  267. transition: 0.5s;
  268. }
  269.  
  270. #icon7:hover {
  271. filter: blur(0px) grayscale(0%);
  272. background-position: 40% 75%;
  273. }
  274.  
  275. #icon8 {
  276. width: 150px;
  277. margin: 0px;
  278. border: none;
  279. height: 100px;
  280. background-color:transparent;
  281. position: absolute;
  282. background-image:url("https://i.imgur.com/UzxK32Q.png");
  283. background-repeat:no-repeat;
  284. background-position: center;
  285. background-size: cover;
  286. border-radius: 10px;
  287. border: 2px solid #000;
  288. z-index: 11;
  289. filter: blur(4px) grayscale(100%);
  290. box-sizing: border-box;
  291. transition: 0.5s;
  292. }
  293.  
  294. #icon8:hover {
  295. filter: blur(0px) grayscale(0%);
  296. background-position: 40% 10%;
  297. }
  298.  
  299. #icon9 {
  300. width: 150px;
  301. margin: 0px;
  302. border: none;
  303. height: 100px;
  304. background-color:transparent;
  305. position: absolute;
  306. background-image:url("https://i.imgur.com/Xa25uWG.png");
  307. background-repeat:no-repeat;
  308. background-position: center;
  309. background-size: cover;
  310. border-radius: 10px;
  311. border: 2px solid #000;
  312. z-index: 11;
  313. filter: blur(4px) grayscale(100%);
  314. box-sizing: border-box;
  315. transition: 0.5s;
  316. }
  317.  
  318. #icon9:hover {
  319. filter: blur(0px) grayscale(0%);
  320. background-position: 40% 10%;
  321. }
  322.  
  323. #gallery {
  324. width: 10vw;
  325. height: 100vh;
  326. background-color: #ddafa5;
  327. background-image: url("https://www.transparenttextures.com/patterns/wild-flowers.png");
  328. position: absolute;
  329. left: 4.7vw;
  330. bottom: 0vw;
  331. margin: auto;
  332. box-shadow: 0px 5px 10px #000;
  333. z-index: 1;
  334. }
  335.  
  336. .alias {position: absolute;
  337. font-family: 'Bebas Neue';
  338. background-color: transparent;
  339. background: -webkit-linear-gradient(right, #48D1CC, #D22B2B);
  340. -webkit-background-clip: text;
  341. -webkit-text-fill-color: transparent;
  342. font-size: 6vw;
  343. bottom: 12.5vw;
  344. left: -21vw;
  345. width: 37vw;
  346. height: 6vw;
  347. text-align: center;
  348. transform: rotate(-90deg);
  349. overflow: auto;
  350. padding:5px 5px 5px 5px;
  351. z-index: 1;}
  352.  
  353. .button {
  354. background-color: #000;
  355. color: #D22B2B;
  356. font-family: 'Playball', cursive;
  357. font-size: 25px;
  358. text-align: center;
  359. width: 13vw;
  360. right: 45vw;
  361. bottom: 1vw;
  362. position: absolute;
  363. z-index:1;
  364. -webkit-transition: 0.5s linear;
  365. -moz-transition: 0.5s linear;
  366. -o-transition: 0.5s linear;
  367. transition: 0.5s linear;
  368. }
  369.  
  370. .button:hover {
  371. color: #48D1CC;
  372. -webkit-transition: 0.5s linear;
  373. -moz-transition: 0.5s linear;
  374. -o-transition: 0.5s linear;
  375. transition: 0.5s linear;
  376. }
  377.  
  378. h1 {
  379. background: url(https://thumbs.gfycat.com/DisloyalUnhealthyFieldspaniel-max-1mb.gif);
  380. background-position: left;
  381. background-size:cover;
  382. line-height:1vw;
  383. letter-spacing: 0.2vw;
  384. font-size: 4vh;
  385. font-family: 'Staatliches';
  386. text-align: center;
  387. border: .2vh solid #15181F;
  388. border-radius: 10px;
  389. color: #fff;
  390. filter: drop-shadow(0px 0px 4px #D22B2B);
  391. text-shadow: 3px 1px 2px #15181F, 0 0 10px #D22B2B;
  392. margin-top: 1vh;
  393. -webkit-transition: 0.5s linear;
  394. -moz-transition: 0.5s linear;
  395. -o-transition: 0.5s linear;
  396. transition: 0.5s linear;
  397. }
  398.  
  399. h1:hover {
  400. filter: drop-shadow(0px 0px 4px #48D1CC);
  401. text-shadow: 3px 1px 2px #15181F, 0 0 10px #48D1CC;
  402. -webkit-transition: 0.5s linear;
  403. -moz-transition: 0.5s linear;
  404. -o-transition: 0.5s linear;
  405. transition: 0.5s linear;
  406. }
  407.  
  408. /* From here down is the code for your commissions page <3 */
  409.  
  410. .cover {
  411. background:url('https://thumbs.gfycat.com/RingedSpicyKodiakbear-size_restricted.gif');
  412. opacity: 0.3;
  413. position: absolute;
  414. width: 100vw;
  415. height: 100vh;
  416. left: 0vw;
  417. top: 0vw;
  418. z-index: 1;
  419. overflow: hidden;
  420. }
  421.  
  422. #container {
  423. background-color:#69626d;
  424. width: 75vw;
  425. height: 35vw;
  426. margin:auto;
  427. position: absolute;
  428. padding: 5px;
  429. left: 13vw;
  430. top: 10vw;
  431. z-index:1;
  432. box-shadow: 0px 5px 10px #000;
  433. background-image: url("https://wallpaperaccess.com/full/270612.jpg");
  434. background-size: fill;
  435. background-position: center;
  436. border-radius: 20px;
  437. z-index: 1;
  438. }
  439.  
  440. #artist {
  441. background-color: rgb(0,0,0,0.6);
  442. width: 71vw;
  443. height: 5vw;
  444. margin:auto;
  445. position: absolute;
  446. padding: 5px;
  447. font-family: 'Anybody', cursive;
  448. font-size: 18px;
  449. color: #fff;
  450. left: 2vw;
  451. top: 1vw;
  452. z-index:1;
  453. border: #000000 solid 2px;
  454. }
  455.  
  456. #works {
  457. background-color: rgb(0,0,0,0.6);
  458. width: 35vw;
  459. height: 27vw;
  460. margin:auto;
  461. position: absolute;
  462. padding: 5px;
  463. left: 2vw;
  464. bottom: 1vw;
  465. z-index:1;
  466. }
  467.  
  468. #price {
  469. background-color: rgb(0,0,0,0.6);
  470. width: 35vw;
  471. height: 27vw;
  472. margin:auto;
  473. position: absolute;
  474. padding: 5px;
  475. font-family: 'Anybody', cursive;
  476. font-size: 18px;
  477. color: #fff;
  478. right: 1.8vw;
  479. bottom: 1vw;
  480. z-index:1;
  481. border: #000000 solid 2px;
  482. }
  483.  
  484. .name {position: absolute;
  485. font-family: 'Playball';
  486. color: #fff;
  487. font-size: 6vw;
  488. top: -6vw;
  489. left: 18vw;
  490. width: 36vw;
  491. height: 9vw;
  492. border: 0px solid #000;
  493. text-align: justify;
  494. text-shadow: -1px 0 #c0c0c0, 0 1px #000,1px 0 #000, 0 -1px #c0c0c0;
  495. overflow: auto;
  496. padding:5px 5px 5px 5px;
  497. z-index: 5;}
  498.  
  499. .undername { background: transparent;
  500. background:url('https://i.pinimg.com/originals/6c/f7/bc/6cf7bca0386519ed229fe3618e4ef1d1.gif') 50px 50px repeat;
  501. background-position: center;
  502. position: absolute;
  503. font-family: 'Playball';
  504. font-size: 6vw;
  505. top: -6vw;
  506. left: 18vw;
  507. width: 36vw;
  508. height: 9vw;
  509. text-align: justify;
  510. padding:5px 5px 5px 5px;
  511. -webkit-text-fill-color: transparent;
  512. -webkit-background-clip: text;
  513. z-index: 6;}
  514.  
  515. s2 {
  516. background: #aaa9ad;
  517. padding: 0.5vh;
  518. color: #AA6C39;
  519. line-height: 3vh;
  520. font-size: 2vh;
  521. font-family: 'Anybody';
  522. }
  523.  
  524. h2 {
  525. background: url(https://i.pinimg.com/originals/71/e7/48/71e748cc6fedc700240795d96c564652.gif);
  526. background-position: left;
  527. background-size:cover;
  528. line-height:1vw;
  529. letter-spacing: 0.2vw;
  530. font-size: 4vh;
  531. font-family: 'Staatliches';
  532. text-align: center;
  533. border: .2vh solid #15181F;
  534. border-radius: 10px;
  535. color: #fff;
  536. filter: drop-shadow(0px 0px 4px #efcc90);
  537. text-shadow: 3px 1px 2px #15181F, 0 0 10px #efcc90;
  538. margin-top: 1vh;
  539. -webkit-transition: 0.5s linear;
  540. -moz-transition: 0.5s linear;
  541. -o-transition: 0.5s linear;
  542. transition: 0.5s linear;
  543. }
  544.  
  545. h2:hover {
  546. filter: drop-shadow(0px 0px 4px #D22B2B);
  547. text-shadow: 3px 1px 2px #15181F, 0 0 10px #D22B2B;
  548. -webkit-transition: 0.5s linear;
  549. -moz-transition: 0.5s linear;
  550. -o-transition: 0.5s linear;
  551. transition: 0.5s linear;
  552. }
  553.  
  554. i{color: #008b8b;}
  555. b{color: #D22B2B;}
  556. a{color: #AA6C39; text-decoration: none;}
  557. </style>
  558. <div id="page">
  559. <div id="introimage"></div>
  560.  
  561. <button class="button border-gradient">Art Commissions?</button>
  562.  
  563. <div id="introcontainer" class="border-gradient">
  564.  
  565. <div id="nav2">
  566. <a href="#five"><div id="icon5"></div></a>
  567. <a href="#six"><div id="icon6"></div></a>
  568. <a href="#seven"><div id="icon7"></div></a>
  569. <a href="#eight"><div id="icon8"></div></a>
  570. <a href="#nine"><div id="icon9"></div></a>
  571. </div>
  572.  
  573. <div class="alias">LILY TOUKA</div>
  574.  
  575. <div id="introcontent">
  576.  
  577.  
  578. <div style="width: 42vw; height: 30vw; overflow-y: hidden;">
  579.  
  580. <a name="five"></a>
  581. <div style="width: 42vw; height: 30vw; overflow: auto;" align="center">
  582. <h1>The Basics</h1>
  583. <span style="float:left;"><b>Alias(es)</b></span><span style="float:right;">HERE</span><br>
  584. <span style="float:left;"><b>Gender</b></span><span style="float:right;">Female</span><br>
  585. <span style="float:left;"><b>Apparent Age</b></span><span style="float:right;">HERE</span><br><br>
  586. <span style="float:left;"><b>Ethnicity</b></span><span style="float:right;">HERE</span><br>
  587. <span style="float:left;"><b>Orientation</b></span><span style="float:right;">HERE</span><br>
  588. <span style="float:left;"><b>Marital Status</b></span><span style="float:right;"><a href="https://roleplay.chat/profile.php?user=Teddy" target="_blank">Her Teddy Bear c;</a></span><br>
  589. <span style="float:left;"><b>Alignment</b></span><span style="float:right;">HERE</span><br>
  590. <span style="float:left;"><b>Handicaps</b></span><span style="float:right;">HERE</span><br>
  591. <span style="float:left;"><b>Allergies</b></span><span style="float:right;">HERE</span><br><br>
  592. <span style="float:left;"><b>Height</b></span><span style="float:right;">HERE</span><br>
  593. <span style="float:left;"><b>Weight</b></span><span style="float:right;">HERE</span><br>
  594. <span style="float:left;"><b>Body Type</b></span><span style="float:right;">HERE</span><br>
  595. <span style="float:left;"><b>Iris Color</b></span><span style="float:right;">HERE</span><br>
  596. <span style="float:left;"><b>Hair Color</b></span><span style="float:right;">HERE</span><br>
  597. <span style="float:left;"><b>Skin Tone</b></span><span style="float:right;">HERE</span><br>
  598. </div>
  599.  
  600. <a name="six"></a>
  601. <div style="width: 42vw; height: 30vw; overflow: auto;" align="left">
  602. <h1>Abilities</h1>
  603.  
  604. </div>
  605.  
  606. <a name="seven"></a>
  607. <div style="width: 42vw; height: 30vw; overflow: auto;" align="left">
  608. <h1>History</h1>
  609.  
  610. </div>
  611.  
  612. <a name="eight"></a>
  613. <div style="width: 42vw; height: 30vw; overflow: auto;" align="left">
  614. <h1>Friends</h1>
  615. <a target="_blank" href="PROFILE LINK HERE"><img src="https://cdn2.iconfinder.com/data/icons/gaming-and-beyond-part-2-1/80/User_gray-512.png" height="100" width="100" align="left" border="5" title="WORDS"></a>
  616. </div>
  617.  
  618. <a name="nine"></a>
  619. <div style="width: 42vw; height: 30vw; overflow: auto;" align="left">
  620. <h1>The World</h1>
  621.  
  622. </div>
  623. </div>
  624. </div>
  625. </div>
  626.  
  627. <div id="gallery" class="border-left-gradient">
  628. <marquee behavior="scroll" direction="up" width="200px" height="100%" hspace="15px" onmouseover="this.stop();" onmouseout="this.start();">
  629. <img src="LINK HERE" height="200" width="150" align="center" border="5">
  630. </marquee>
  631. </div>
  632. </div>
  633.  
  634. <!-- This is where the character profile stops and the commission profile begins. -->
  635.  
  636. <div class="cover"></div>
  637.  
  638. <div id="container">
  639. <div class="name">ToxicCookieJars</div>
  640. <div class="undername">ToxicCookieJars</div>
  641.  
  642. <div id="artist">
  643. <div style="width: 71vw; height: 5vw; overflow-y: hidden;">
  644. <div style="width: 71vw; height: 5vw; overflow: auto;" align="center">
  645. <br><br>
  646. <s2><a href="https://twitter.com/ToxicCookieJars" target="_blank">Twitter</a></s2> <s2><a href="https://www.patreon.com/ToxicCookieJars" target="_blank">Patreon</a></s2> <s2><a href="https://ko-fi.com/toxiccookiejars" target="_blank">Ko-Fi</a></s2> <s2><a href="https://www.picarto.tv/ToxicCookieJars" target="_blank">Picarto.TV</a></s2>
  647. </div>
  648. </div>
  649. </div>
  650.  
  651. <div id="works">
  652. <div style="width: 35vw; height: 30vw; overflow-y: hidden;">
  653. <div style="width: 35vw; height: 30vw; overflow: auto;" align="left">
  654. <marquee behavior="scroll" direction="up" width="750px" height="100%" hspace="20px" onmouseover="this.stop();" onmouseout="this.start();">
  655. <img src="PREVIEW IMAGE LINK" style="height: 350px; width: 200px; border: 1px solid #000;"/>
  656. <img src="PREVIEW IMAGE LINK" style="height: 350px; width: 200px; border: 1px solid #000;"/>
  657. <img src="PREVIEW IMAGE LINK" style="height: 350px; width: 200px; border: 1px solid #000;"/>
  658. <img src="PREVIEW IMAGE LINK" style="height: 350px; width: 200px; border: 1px solid #000;"/>
  659. <img src="PREVIEW IMAGE LINK" style="height: 350px; width: 200px; border: 1px solid #000;"/>
  660. <img src="PREVIEW IMAGE LINK" style="height: 350px; width: 200px; border: 1px solid #000;"/>
  661. </marquee>
  662. </div>
  663. </div>
  664. </div>
  665.  
  666. <div id="price">
  667. <div style="width: 35vw; height: 27vw; overflow-y: hidden;">
  668. <div style="width: 35vw; height: 27vw; overflow: auto;" align="left">
  669. <h2>Commission Prices</h2>
  670. <center>Headshot | Bust | Thigh Up | Full Body</center><br><br>
  671. <span style="float:left;"><b>Sketch</b></span><span style="float:right;">$18 | $26 | $32 | $40</span><br>
  672. <span style="float:left;"><b>Lineart</b></span><span style="float:right;">$20 | $34 | $50 | $65</span><br>
  673. <span style="float:left;"><b>Flat</b></span><span style="float:right;">$40 | $55 | $75 | $85</span><br>
  674. <span style="float:left;"><b>Cell</b></span><span style="float:right;">$50 | $68 | $85 | $105</span><br>
  675. <span style="float:left;"><b>Detail</b></span><span style="float:right;">$60 | $80 | $100 | $120</span><br>
  676. <span style="float:left;"><b>Additional OCs</b></span><span style="float:right;">+50%</span><br><br>
  677.  
  678. <ul>
  679. <li>Additional scenes and alts are on a case by case basis
  680. <li>I also do comic, icons and emotes.
  681. <li>I have the right to deny a piece.
  682. </ul>
  683. </div>
  684. </div>
  685. </div>
  686. </div>
  687. </body>
  688. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement