Advertisement
Falkstids

Titania code

Aug 3rd, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.61 KB | None | 0 0
  1. <style>
  2. @import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative:400,900|Roboto');
  3. @import url('https://fonts.googleapis.com/css?family=Quicksand|Raleway:200,400,600');
  4. body {
  5. background-color:#101010;
  6. overflow:hidden;
  7. background-image: url("https://www.transparenttextures.com/patterns/shley-tree-2.png");
  8.  
  9.  
  10. }
  11.  
  12. ::-webkit-scrollbar
  13. {
  14. width: 0px;
  15. background-color: transparent;
  16. }
  17.  
  18.  
  19. #ball {
  20. display: inline-block;
  21. width: 200px;
  22. height: 200px;
  23. margin: 0;
  24. border-radius: 50%;
  25. position:absolute;
  26. top:50%;
  27. left:50%;
  28. margin-top:-100px;
  29. margin-left:-100px;
  30. background: radial-gradient(circle at 50% 120%, transparent, #93E4F0 10%, #93E4F0 80%, #062745 100%);
  31. opacity:.8;
  32. animation-name: floating;
  33. animation-duration: 3s;
  34. animation-iteration-count: infinite;
  35. animation-timing-function: ease-in-out;
  36. z-index:9;
  37. transition:1s;
  38. transition-delay:99999999s;
  39. }
  40.  
  41. @keyframes floating {
  42. from { transform: translate(0, 0px); }
  43. 65% { transform: translate(0, 10px); }
  44. to { transform: translate(0, 0px); }
  45. }
  46. #ball:before {
  47. content: "";
  48. position: absolute;
  49. top: 1%;
  50. left: 5%;
  51. width: 90%;
  52. height: 90%;
  53. border-radius: 50%;
  54. background: radial-gradient(circle at 50% 0px, #ffffff, rgba(255, 255, 255, 0) 70%);
  55. -webkit-filter: blur(5px);
  56. z-index: 2;
  57.  
  58. }
  59.  
  60. body:hover #ball{
  61. width:90%;
  62. height:180%;
  63. margin-top:-30%;
  64. margin-left:-45%;
  65. animation-name: none;
  66. opacity:.1;
  67. transition-delay:2s;
  68. }
  69.  
  70.  
  71. #backgroundball{
  72. width:200px;
  73. height:200px;
  74. background-image:url(https://cdn.discordapp.com/attachments/306938078113693697/342083089939562496/bae3b239698f104fd9e6840157ab3942.jpg);
  75. background-size:170%;
  76. border-radius:50%;
  77. position:absolute;
  78. top:50%;
  79. left:50%;
  80. margin-top:-100px;
  81. margin-left:-100px;
  82. transition:1s;
  83. background-position:50% 100%;
  84. opacity:0;
  85. transition-delay:9999999999s;
  86. z-index:10;
  87. }
  88.  
  89. body:hover #backgroundball{
  90. width:90%;
  91. height:180%;
  92. margin-top:-30%;
  93. margin-left:-45%;
  94. transition-delay:2s;
  95. opacity:.8;
  96. }
  97.  
  98. #image{
  99. background-image:url(https://media.discordapp.net/attachments/306938609976606720/337775557435588609/2.png?width=355&height=468);
  100. width:600px;
  101. height:600px;
  102. background-size:contain;
  103. background-repeat:no-repeat;
  104. z-index:11;
  105. position:absolute;
  106. top:50%;
  107. left:50%;
  108. margin-top:-250px;
  109. margin-left:-800px;
  110. opacity:0;
  111. transition:3s;
  112. transition-delay:99999999s;
  113. }
  114.  
  115. body:hover #image{
  116. margin-left:-600px;
  117. opacity:1;
  118. transition-delay:3s;
  119. }
  120.  
  121. #box{
  122. width:450px;
  123. height:150px;
  124. background: linear-gradient(white, transparent) ;
  125. opacity:0.9 ;
  126. position:fixed;
  127. top:50%;
  128. left:50%;
  129. margin-top:150px;
  130. margin-left:-350px;
  131. z-index:12;
  132. opacity:0;
  133. animation: appear 1s 5.9s linear ;
  134. animation-fill-mode: forwards;
  135.  
  136. }
  137.  
  138. @keyframes appear{
  139. to{ opacity:1;}
  140. }
  141.  
  142. .text{
  143. width:430px;
  144. height:130px;
  145. padding:10px;
  146. color:#000;
  147. font-family: 'Cinzel Decorative', cursive;
  148. font-weight:900;
  149. font-size:14pt;
  150. }
  151.  
  152. p{
  153. width: 430px;
  154. animation: type 2s 6s steps(60, end);
  155. overflow:hidden;
  156. white-space: nowrap;
  157. margin: 0px 0 0 0px;
  158. }
  159.  
  160. p:nth-child(2){
  161. animation: type2 4s 6s steps(60, end);
  162. }
  163.  
  164. p:nth-child(3){
  165. animation: type3 5.5s 6s steps(60, end);
  166. }
  167.  
  168. p:nth-child(4){
  169. animation: type4 7.5s 6s steps(60, end);
  170. }
  171.  
  172. @keyframes type{
  173. from { width: 0; }
  174. }
  175.  
  176. @keyframes type2{
  177. 0%{width: 0; }
  178. 40%{width: 0; }
  179. 100%{ width: 100%; }
  180. }
  181.  
  182. @keyframes type3{
  183. 0%{width: 0; }
  184. 68%{width: 0; }
  185. 100%{ width: 100%; }
  186. }
  187. @keyframes type4{
  188. 0%{width: 0; }
  189. 75%{width: 0; }
  190. 100%{ width: 100%; }
  191. }
  192. #name{
  193. width:450px;
  194. height:45px;
  195. background:linear-gradient(to right, transparent, white, transparent);
  196. position:absolute;
  197. margin-top:-60px;
  198. }
  199.  
  200. .nametext {
  201. font-family: 'Cinzel Decorative', cursive;
  202. font-size:25pt;
  203. font-weight:900;
  204. text-align:center;
  205. background: url('https://68.media.tumblr.com/0fad60580945f2b76c24d4dcc1927f5e/tumblr_nsy6zu5y0o1ru72gvo1_500.gif') no-repeat;
  206. background-size:100%;
  207. background-position:center;
  208. -webkit-background-clip: text;
  209. -webkit-text-fill-color: transparent;
  210.  
  211. }
  212.  
  213. .arrow-up a{
  214. width: 0;
  215. height: 0;
  216. border-top: 15px solid transparent;
  217. border-left: 15px solid yellow;
  218.  
  219. border-bottom: 15px solid transparent;
  220. top:50%;
  221. left:50%;
  222. position:absolute;
  223. margin-top:50px;
  224. margin-left:200px;
  225. display:inline-block;
  226. animation: blink 1s infinite linear;
  227. z-index:13;
  228. }
  229.  
  230. @keyframes blink{
  231. to{opacity: .0;}
  232. }
  233.  
  234. #menubackground{
  235. width:850px;
  236. height:600px;
  237. background-image:url(http://i.imgur.com/IcyNcGD.png);
  238. background-size:100%;
  239. position:fixed;
  240. top:50%;
  241. left:50%;
  242. margin-left:-300px;
  243. margin-top:-300px;
  244. opacity:0;
  245. z-index:1;
  246.  
  247. }
  248.  
  249. #navi{
  250. width:30px;
  251. height:300px;
  252. background-color:transparent;
  253. position:absolute;
  254. top:50%;
  255. left:50%;
  256. margin-top:-190px;
  257. margin-left:-75px;
  258. }
  259.  
  260. #navi a{
  261. width:25px;
  262. height:25px;
  263. background-color:#3f6b70;
  264. border:solid 1px #fff;
  265. transform:rotate(45deg);
  266. display:inline-block;
  267. transition:1s;
  268. }
  269.  
  270. #navi a:hover{
  271. background-color:#fff;
  272. }
  273.  
  274. #OOC{
  275. width:280px;
  276. height:180px;
  277. border:solid 1px #fff;
  278. background-color:transparent;
  279. position:absolute;
  280. top:50%;
  281. left:50%;
  282. margin-top:75px;
  283. margin-left:-370px;
  284. padding:5px;
  285. font-family: 'Quicksand', sans-serif;
  286. font-size:11pt;
  287. color:#fff;
  288. overflow:auto;
  289. text-align:justify;
  290. }
  291.  
  292. #tab1, #tab2{
  293. width:280px;
  294. height:280px;
  295. border:solid 1px #fff;
  296. background-color:transparent;
  297. position:absolute;
  298. top:50%;
  299. left:50%;
  300. margin-top:-255px;
  301. margin-left:-370px;
  302. padding:5px;
  303. font-family: 'Quicksand', sans-serif;
  304. font-size:11pt;
  305. color:#fff;
  306. overflow:auto;
  307. text-align:justify;
  308. opacity:0;
  309. white-space: nowrap;
  310. }
  311.  
  312. #tab3, #tab4{
  313. width:380px;
  314. height:180px;
  315. border:solid 1px #fff;
  316. background-color:transparent;
  317. position:absolute;
  318. top:50%;
  319. left:50%;
  320. margin-top:-255px;
  321. margin-left:-40px;
  322. padding:5px;
  323. font-family: 'Quicksand', sans-serif;
  324. font-size:11pt;
  325. color:#fff;
  326. overflow:auto;
  327. text-align:justify;
  328. opacity:0;
  329. }
  330.  
  331. #tab5, #tab6{
  332. width:380px;
  333. height:275px;
  334. border:solid 1px #fff;
  335. background-color:transparent;
  336. position:absolute;
  337. top:50%;
  338. left:50%;
  339. margin-top:-25px;
  340. margin-left:-40px;
  341. padding:5px;
  342. font-family: 'Quicksand', sans-serif;
  343. font-size:11pt;
  344. color:#fff;
  345. overflow:auto;
  346. text-align:justify;
  347. opacity:0;
  348. }
  349.  
  350.  
  351.  
  352. #blanket:target #box{
  353. animation: appear 1s linear ;
  354. animation-fill-mode: backwards;
  355. }
  356.  
  357.  
  358. #blanket:target #menubackground{
  359. opacity:.9;
  360. transition:1s;
  361. z-index:13;
  362. }
  363. #blanket:target #tab1{
  364. opacity:1;
  365. transition:1s;
  366. z-index:13;
  367. }
  368. #blanket:target #tab3{
  369. opacity:1;
  370. transition:1s;
  371. z-index:13;
  372. }
  373.  
  374. #blanket:target #tab5{
  375. opacity:1;
  376. transition:1s;
  377. z-index:13;
  378. }
  379.  
  380.  
  381.  
  382. #blanket2:target #box{
  383. animation: appear 1s linear ;
  384. animation-fill-mode: backwards;
  385. }
  386. #blanket2:target #menubackground{
  387. opacity:.9;
  388. transition:1s;
  389. z-index:13;
  390. }
  391. #blanket2:target #tab1{
  392. opacity:1;
  393. transition:1s;
  394. z-index:13;
  395. }
  396. #blanket2:target #tab2{
  397. opacity:0;
  398. transition:1s;
  399. z-index:12;
  400. }
  401.  
  402. #blanket2:target #tab3{
  403. opacity:1;
  404. transition:1s;
  405. z-index:13;
  406. }
  407.  
  408. #blanket2:target #tab4{
  409. opacity:0;
  410. transition:1s;
  411. z-index:12;
  412. }
  413.  
  414. #blanket2:target #tab5{
  415. opacity:1;
  416. transition:1s;
  417. z-index:13;
  418. }
  419.  
  420. #blanket2:target #tab6{
  421. opacity:0;
  422. transition:1s;
  423. z-index:12;
  424. }
  425.  
  426. #blanket3:target #box{
  427. animation: appear 1s linear ;
  428. animation-fill-mode: backwards;
  429. }
  430. #blanket3:target #menubackground{
  431. opacity:.9;
  432. transition:1s;
  433. z-index:13;
  434. }
  435. #blanket3:target #tab1{
  436. opacity:0;
  437. transition:1s;
  438. z-index:12;
  439. }
  440. #blanket3:target #tab2{
  441. opacity:1;
  442. transition:1s;
  443. z-index:13;
  444. }
  445.  
  446. #blanket3:target #tab3{
  447. opacity:1;
  448. transition:1s;
  449. z-index:13;
  450. }
  451.  
  452. #blanket3:target #tab4{
  453. opacity:0;
  454. transition:1s;
  455. z-index:12;
  456. }
  457.  
  458. #blanket3:target #tab5{
  459. opacity:1;
  460. transition:1s;
  461. z-index:13;
  462. }
  463.  
  464. #blanket3:target #tab6{
  465. opacity:0;
  466. transition:1s;
  467. z-index:12;
  468. }
  469.  
  470. #blanket4:target #box{
  471. animation: appear 1s linear ;
  472. animation-fill-mode: backwards;
  473. }
  474. #blanket4:target #menubackground{
  475. opacity:.9;
  476. transition:1s;
  477. z-index:13;
  478. }
  479. #blanket4:target #tab1{
  480. opacity:1;
  481. transition:1s;
  482. z-index:13;
  483. }
  484. #blanket4:target #tab2{
  485. opacity:0;
  486. transition:1s;
  487. z-index:12;
  488. }
  489.  
  490. #blanket4:target #tab3{
  491. opacity:1;
  492. transition:1s;
  493. z-index:13;
  494. }
  495.  
  496. #blanket4:target #tab4{
  497. opacity:0;
  498. transition:1s;
  499. z-index:12;
  500. }
  501.  
  502. #blanket4:target #tab5{
  503. opacity:1;
  504. transition:1s;
  505. z-index:13;
  506. }
  507.  
  508. #blanket4:target #tab6{
  509. opacity:0;
  510. transition:1s;
  511. z-index:12;
  512. }
  513.  
  514. #blanket5:target #box{
  515. animation: appear 1s linear ;
  516. animation-fill-mode: backwards;
  517. }
  518. #blanket5:target #menubackground{
  519. opacity:.9;
  520. transition:1s;
  521. z-index:13;
  522. }
  523. #blanket5:target #tab1{
  524. opacity:1;
  525. transition:1s;
  526. z-index:13;
  527. }
  528. #blanket5:target #tab2{
  529. opacity:0;
  530. transition:1s;
  531. z-index:12;
  532. }
  533.  
  534. #blanket5:target #tab3{
  535. opacity:0;
  536. transition:1s;
  537. z-index:12;
  538. }
  539.  
  540. #blanket5:target #tab4{
  541. opacity:1;
  542. transition:1s;
  543. z-index:13;
  544. }
  545.  
  546. #blanket5:target #tab5{
  547. opacity:1;
  548. transition:1s;
  549. z-index:13;
  550. }
  551.  
  552. #blanket5:target #tab6{
  553. opacity:0;
  554. transition:1s;
  555. z-index:12;
  556. }
  557.  
  558. #blanket6:target #box{
  559. animation: appear 1s linear ;
  560. animation-fill-mode: backwards;
  561. }
  562. #blanket6:target #menubackground{
  563. opacity:.9;
  564. transition:1s;
  565. z-index:13;
  566. }
  567. #blanket6:target #tab1{
  568. opacity:1;
  569. transition:1s;
  570. z-index:13;
  571. }
  572. #blanket6:target #tab2{
  573. opacity:0;
  574. transition:1s;
  575. z-index:12;
  576. }
  577.  
  578. #blanket6:target #tab3{
  579. opacity:1;
  580. transition:1s;
  581. z-index:13;
  582. }
  583.  
  584. #blanket6:target #tab4{
  585. opacity:0;
  586. transition:1s;
  587. z-index:12;
  588. }
  589.  
  590. #blanket6:target #tab5{
  591. opacity:1;
  592. transition:1s;
  593. z-index:13;
  594. }
  595.  
  596. #blanket6:target #tab6{
  597. opacity:0;
  598. transition:1s;
  599. z-index:12;
  600. }
  601.  
  602. #blanket7:target #box{
  603. animation: appear 1s linear ;
  604. animation-fill-mode: backwards;
  605. }
  606. #blanket7:target #menubackground{
  607. opacity:.9;
  608. transition:1s;
  609. z-index:13;
  610. }
  611. #blanket7:target #tab1{
  612. opacity:1;
  613. transition:1s;
  614. z-index:13;
  615. }
  616. #blanket7:target #tab2{
  617. opacity:0;
  618. transition:1s;
  619. z-index:12;
  620. }
  621.  
  622. #blanket7:target #tab3{
  623. opacity:1;
  624. transition:1s;
  625. z-index:13;
  626. }
  627.  
  628. #blanket7:target #tab4{
  629. opacity:0;
  630. transition:1s;
  631. z-index:12;
  632. }
  633.  
  634. #blanket7:target #tab5{
  635. opacity:0;
  636. transition:1s;
  637. z-index:12;
  638. }
  639.  
  640. #blanket7:target #tab6{
  641. opacity:1;
  642. transition:1s;
  643. z-index:13;
  644. }
  645.  
  646.  
  647. h1{
  648. font-size:20pt;
  649. font-family: 'Raleway', sans-serif;
  650. font-weight:200;
  651. color:#fff;
  652. text-align:center;
  653. margin-top: -5;
  654. margin-bottom: 0;
  655. margin-left:-10;
  656. margin-right:-10;
  657. border-bottom:solid 3px #fff;
  658. }
  659.  
  660. h2{
  661. font-size:15pt;
  662. font-family: 'Raleway', sans-serif;
  663. font-weight:200;
  664. color:#fff;
  665. text-align:left;
  666. margin-top: -5;
  667. margin-bottom: 0;
  668. border-bottom:solid 1px #fff;
  669. }
  670. b{
  671. color:#82dae4;
  672. }
  673.  
  674. a{
  675. color:#fff;
  676. text-decoration:none;
  677. transition:1s;
  678. }
  679.  
  680. a:hover{
  681. color:gold;
  682.  
  683. }
  684. .demo-dot {
  685. animation: xAxis 7s infinite ;
  686. position:absolute;
  687. top:90%;
  688. left:10%;
  689. }
  690. .demo-dot::after {
  691. content: '';
  692. display: block;
  693. width: 20px;
  694. height: 20px;
  695. border-radius: 50%;
  696. background-color: #fff;
  697. animation: yAxis 2.5s infinite;
  698. box-shadow: 1px 1px 100px 30px #0ff;
  699. }
  700.  
  701. .p-1{
  702. animation-duration:4s;
  703. top:30%;
  704. }
  705.  
  706. .p-1::after{
  707. animation-duration:10s;
  708. }
  709.  
  710. .p-2{
  711. animation-duration:10s;
  712. top:70%;
  713. left:30%;
  714. }
  715.  
  716. .p-2::after{
  717. animation-duration:2s;
  718. animation-direction: linear;
  719. }
  720.  
  721.  
  722. .p-3{
  723. animation-duration:2s;
  724. top:10%;
  725. left:30%;
  726. animation-direction: alternate;
  727. }
  728.  
  729. .p-3::after{
  730. animation-duration:5s;
  731. }
  732.  
  733. .p-4{
  734. animation-duration:5s;
  735. top:20%;
  736. left:70%;
  737. animation-direction: alternate;
  738. }
  739.  
  740. .p-4::after{
  741. animation-duration:3s;
  742. animation-direction: alternate;
  743. }
  744.  
  745. .p-5{
  746. animation-duration:20s;
  747. top:50%;
  748. left:60%;
  749. }
  750.  
  751. .p-5::after{
  752. animation-duration:10s;
  753. animation-direction: alternate;
  754. }
  755.  
  756.  
  757. .p-6{
  758. animation-duration:7s;
  759. top:80%;
  760. left:40%;
  761.  
  762. }
  763.  
  764. .p-6::after{
  765. animation-duration:6s;
  766.  
  767. }
  768.  
  769. .p-7{
  770. animation-duration:2.5s;
  771. top:40%;
  772. left:50%;
  773. animation-direction: linear;
  774. }
  775.  
  776. .p-7::after{
  777. animation-duration:3s;
  778. animation-direction: alternate;
  779. }
  780.  
  781. .p-8{
  782. animation-duration:15s;
  783. top:90%;
  784. left:70%;
  785.  
  786. }
  787.  
  788. .p-8::after{
  789. animation-duration:15s;
  790.  
  791. }
  792.  
  793. .p-9{
  794. animation-duration:6s;
  795. top:60%;
  796. left:0%;
  797.  
  798. }
  799.  
  800. .p-9::after{
  801. animation-duration:3.5s;
  802.  
  803. }
  804.  
  805. .p-10{
  806. animation-duration:8s;
  807. top:50%;
  808. left:90%;
  809.  
  810. }
  811.  
  812. .p-10::after{
  813. animation-duration:10s;
  814. animation-direction: alternate;
  815. }
  816.  
  817.  
  818.  
  819.  
  820.  
  821.  
  822. @-webkit-keyframes yAxis {
  823. 50% {
  824.  
  825. animation-timing-function: cubic-bezier(0.02, 0.01, 0.21, 1);
  826.  
  827. transform: translateY(0px);
  828. }
  829. }
  830.  
  831. @keyframes yAxis {
  832. 50% {
  833.  
  834. animation-timing-function: cubic-bezier(0.02, 0.01, 0.21, 1);
  835.  
  836. transform: translateY(-150px);
  837. }
  838. }
  839.  
  840. @-webkit-keyframes xAxis {
  841. 50% {
  842.  
  843. animation-timing-function: cubic-bezier(0.3, 0.27, 0.07, 1.64);
  844.  
  845. transform: translateX(100px);
  846. }
  847. }
  848.  
  849. @keyframes xAxis {
  850. 50% {
  851. animation-timing-function: cubic-bezier(0.3, 0.27, 0.07, 1.64);
  852. transform: translateX(300px);
  853. }
  854. }
  855.  
  856. </style>
  857. <div id="ball"></div>
  858. <div id="backgroundball">
  859. </div>
  860. <div class="demo-dot"></div>
  861. <div class="demo-dot p-1"></div>
  862. <div class="demo-dot p-2"></div>
  863. <div class="demo-dot p-3"></div>
  864. <div class="demo-dot p-4"></div>
  865. <div class="demo-dot p-5"></div>
  866. <div class="demo-dot p-6"></div>
  867. <div class="demo-dot p-7"></div>
  868. <div class="demo-dot p-8"></div>
  869. <div class="demo-dot p-9"></div>
  870. <div class="demo-dot p-10"></div>~
  871. <div id="image">
  872. </div>
  873.  
  874. <div id="blanket"><div id="blanket2"><div id="blanket3"><div id="blanket4"><div id="blanket5"><div id="blanket6"><div id="blanket7">
  875.  
  876. <div id="box">
  877. <div id="name">
  878. <div class="nametext">Titania</div>
  879. </div>
  880. <div class="text"><p>If we shadows have offended,</p>
  881. <p>Think but this, and all is mended </p>
  882. <p>Give me your hands if we be friends,</p>
  883. <p>And Titania shall restore amends.</p>
  884. </div>
  885. <div class="arrow-up"><a href="#blanket"></a></div>
  886. </div>
  887.  
  888. <div id="menubackground">
  889. <div id="navi">
  890. <a href="#blanket2"></a><br><br>
  891. <a href="#blanket3"></a><br><br>
  892. <a href="#blanket4"></a><br><br>
  893. <a href="#blanket5"></a><br><br>
  894. <a href="#blanket6"></a><br><br>
  895. <a href="#blanket7"></a><br><br>
  896. </div>
  897. <div id="OOC"> <h1>OOC</h1><b>00</b> This code was commission work done by <a href="">the Hound of Tindalos</a> send him an RPC mail or PM him for inquiries about custom codes and pricing.</div>
  898.  
  899. <div id="tab1"><h1>Stats</h1>
  900. <span style="float: left;">Name</span> <span style="float: right;">Titania</span><br>
  901. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  902. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  903. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  904. <span style="float: left;">Class</span> <span style="float: right;"><img src="https://vignette2.wikia.nocookie.net/fategrandorder/images/6/63/Castericon.png/revision/latest/scale-to-width-down/35?cb=20160205145549" alt="Smiley face" height="30" width="30"></span><br><br>
  905. <span style="float: left;">Alternate Classes</span> <span style="float: right;"><img src="https://vignette4.wikia.nocookie.net/fategrandorder/images/7/73/Ridericon.png/revision/latest/scale-to-width-down/35?cb=20160205145549" alt="Smiley face" height="30" width="30"><img src="https://vignette2.wikia.nocookie.net/fategrandorder/images/5/5f/Sabericon.png/revision/latest/scale-to-width-down/35?cb=20160205145551" alt="Smiley face" height="30" width="30"></span><br><br>
  906. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  907. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  908. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  909. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  910. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  911. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  912. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  913. <span style="float: left;">Stat</span> <span style="float: right;">Stat</span><br>
  914. </div>
  915.  
  916. <div id="tab2"><h1>More Info</h1> AHAHAHAHAHAHAHAHAH2</div>
  917.  
  918. <div id="tab3"> <h1>Gallery</h1><br>
  919. <a href="https://iframe.roleplay.chat/profile.php?user=Friend%20name">
  920. <img border="0" title="Description of friend here" src="http://www.filecluster.com/news/wp-content/uploads/2014/10/Anonymous-Profile-Pic.jpg" width="50" height="50"></a>
  921. <a href="https://iframe.roleplay.chat/profile.php?user=Friend%20name">
  922. <img border="0" title="Description of friend here" src="http://www.filecluster.com/news/wp-content/uploads/2014/10/Anonymous-Profile-Pic.jpg" width="50" height="50"></a>
  923. <a href="https://iframe.roleplay.chat/profile.php?user=Friend%20name">
  924. <img border="0" title="Description of friend here" src="http://www.filecluster.com/news/wp-content/uploads/2014/10/Anonymous-Profile-Pic.jpg" width="50" height="50"></a>
  925. <a href="https://iframe.roleplay.chat/profile.php?user=Friend%20name">
  926. <img border="0"title="Description of friend here" src="http://www.filecluster.com/news/wp-content/uploads/2014/10/Anonymous-Profile-Pic.jpg" width="50" height="50"></a>
  927. </div>
  928.  
  929. <div id="tab4"><h1>Friends</h1><br>
  930. <a href="https://iframe.roleplay.chat/profile.php?user=Friend%20name">
  931. <img border="0" title="Description of friend here" src="http://www.filecluster.com/news/wp-content/uploads/2014/10/Anonymous-Profile-Pic.jpg" width="50" height="50"></a>
  932. <a href="https://iframe.roleplay.chat/profile.php?user=Friend%20name">
  933. <img border="0" title="Description of friend here" src="http://www.filecluster.com/news/wp-content/uploads/2014/10/Anonymous-Profile-Pic.jpg" width="50" height="50"></a>
  934. <a href="https://iframe.roleplay.chat/profile.php?user=Friend%20name">
  935. <img border="0" title="Description of friend here" src="http://www.filecluster.com/news/wp-content/uploads/2014/10/Anonymous-Profile-Pic.jpg" width="50" height="50"></a>
  936. <a href="https://iframe.roleplay.chat/profile.php?user=Friend%20name">
  937. <img border="0"title="Description of friend here" src="http://www.filecluster.com/news/wp-content/uploads/2014/10/Anonymous-Profile-Pic.jpg" width="50" height="50"></a>
  938. </div>
  939.  
  940. <div id="tab5"><h1>History</h1> AHAHAHAHAHAHAHAHAH5</div>
  941.  
  942. <div id="tab6"> <h1>Abilities</h1><br><h2><img src="https://vignette3.wikia.nocookie.net/fategrandorder/images/e/ed/Territory_creation.png/revision/latest/scale-to-width-down/45?cb=20150813172628" alt="Smiley face" height="30" width="30"> Territory Creation </h2><br>
  943. <b>Rank</b>:A<br>
  944. Brief description of the skill.<br><br>
  945. <h2><img src="https://vignette3.wikia.nocookie.net/fategrandorder/images/e/ed/Territory_creation.png/revision/latest/scale-to-width-down/45?cb=20150813172628" alt="Smiley face" height="30" width="30"> Skill name </h2><br>
  946. </div>
  947. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement