Advertisement
LoveDove

Tumblr Theme WIP

Oct 4th, 2017
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 122.73 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3.  
  4.  
  5. <!--
  6.  
  7. WINTER'S LADY THEMES
  8. ♛ this code was made by AGIRLINGREY@TUMBLR.
  9. ♛ do not remove credit or claim as your own.
  10.  
  11. -->
  12.  
  13.  
  14.  
  15.  
  16. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  17. <head>
  18.  
  19.  
  20.  
  21. <!--
  22. POP UP SCRIPT
  23. -->
  24.  
  25.  
  26. <script type="text/javascript"
  27. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  28. <script>
  29. $(document).ready(function() {
  30. //
  31. $('a.poplight[href^=#]').click(function() {
  32. var popID = $(this).attr('rel'); //Get Popup Name
  33. var popURL = $(this).attr('href'); //Get Popup href to define size
  34. var query= popURL.split('?');
  35. var dim= query[1].split('&');
  36. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  37. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  38. var popMargTop = ($('#' + popID).height() + 80) / 2;
  39. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  40. //Apply Margin to Popup
  41. $('#' + popID).css({
  42. 'margin-top' : -popMargTop,
  43. 'margin-left' : -popMargLeft
  44. });
  45. $('body').append('<div id="fade"></div>');
  46. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  47. return false;
  48. });
  49. $('a.close, #fade').live('click', function() {
  50. $('#fade , .popup_block').fadeOut(function() {
  51. $('#fade, a.close').remove(); //fade them both out
  52. });
  53. return false;
  54. });
  55. });
  56. </script>
  57.  
  58.  
  59.  
  60. <!--
  61. VERSE TABS SCRIPT
  62. -->
  63.  
  64.  
  65. <script>
  66.  
  67. $(document).ready(function(){
  68. $("ul#tabs li").click(function(e){
  69. if (!$(this).hasClass("active")) {
  70. var tabNum = $(this).index();
  71. var nthChild = tabNum+1;
  72. $("ul#tabs li.active").removeClass("active");
  73. $(this).addClass("active");
  74. $("ul#tab li.active").removeClass("active");
  75. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  76. }
  77. });
  78. });
  79. </script>
  80.  
  81.  
  82.  
  83.  
  84. <!--
  85. TOOLTIP STYLING SCRIPT
  86. -->
  87.  
  88.  
  89. <script>
  90. (function($){
  91. $(document).ready(function(){
  92. $("a[title]").style_my_tooltips({
  93. tip_follows_cursor:true,
  94. tip_delay_time:90,
  95. tip_fade_speed:600,
  96. attribute:"title"
  97. });
  98. });
  99. })(jQuery);
  100. </script>
  101.  
  102.  
  103.  
  104. <script type="text/javascript"
  105. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  106. <script>
  107. $(document).ready(function() {
  108. //
  109. $('a.poplight[href^=#]').click(function() {
  110. var popID = $(this).attr('rel'); //Get Popup Name
  111. var popURL = $(this).attr('href'); //Get Popup href to define size
  112. var query= popURL.split('?');
  113. var dim= query[1].split('&');
  114. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  115. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  116. var popMargTop = ($('#' + popID).height() + 80) / 2;
  117. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  118. //Apply Margin to Popup
  119. $('#' + popID).css({
  120. 'margin-top' : -popMargTop,
  121. 'margin-left' : -popMargLeft
  122. });
  123. $('body').append('<div id="fade"></div>');
  124. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  125. return false;
  126. });
  127. $('a.close, #fade').live('click', function() {
  128. $('#fade , .popup_block, navigation_block,').fadeOut(function() {
  129. $('#fade, a.close').remove(); //fade them both out
  130. });
  131. return false;
  132. });
  133. });
  134. </script>
  135.  
  136. <!– verses script –>
  137. <script src="http://static.tumblr.com/dxh5xq2/v6Gn8ju1e/tabs.js"></script>
  138.  
  139.  
  140.  
  141.  
  142. <!--
  143. BLOBS IN A JAR
  144. -->
  145.  
  146.  
  147. <script type="text/javascript">
  148. // <![CDATA[
  149. var colour="#FFFFFF"; // what colour are the blobs
  150. var speed=86; // speed of animation, lower is faster
  151. var blobs=9; // how many blobs are in the jar
  152. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  153.  
  154. /***************************\
  155. * Blobs in a Jar Effect *
  156. *(c)2012-13 mf2fm web-design*
  157. * http://www.mf2fm.com/rv *
  158. * DON'T EDIT BELOW THIS BOX *
  159. \***************************/
  160.  
  161. var div;
  162. var xpos=new Array();
  163. var ypos=new Array();
  164. var zpos=new Array();
  165. var dx=new Array();
  166. var dy=new Array();
  167. var dz=new Array();
  168. var blob=new Array();
  169. var swide=800;
  170. var shigh=600;
  171. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  172.  
  173. function addLoadEvent(funky) {
  174. var oldonload=window.onload;
  175. if (typeof(oldonload)!='function') window.onload=funky;
  176. else window.onload=function() {
  177. if (oldonload) oldonload();
  178. funky();
  179. }
  180. }
  181.  
  182. addLoadEvent(fill_the_jar);
  183.  
  184. function fill_the_jar() {
  185. var i, dvs;
  186. div=document.createElement('div');
  187. dvs=div.style;
  188. dvs.position='fixed';
  189. dvs.left='0px';
  190. dvs.top='0px';
  191. dvs.width='1px';
  192. dvs.height='1px';
  193. document.body.appendChild(div);
  194. set_width();
  195. for (i=0; i<blobs; i++) {
  196. add_blob(i);
  197. jamjar(i);
  198. }
  199. }
  200.  
  201. function add_blob(ref) {
  202. var dv, sy;
  203. dv=document.createElement('div');
  204. sy=dv.style;
  205. sy.position='absolute';
  206. sy.textAlign='center';
  207. if (ie_version && ie_version<10) {
  208. sy.fontSize="10px";
  209. sy.width="100px";
  210. sy.height="100px";
  211. sy.paddingTop="40px";
  212. sy.color=colour;
  213. dv.appendChild(document.createTextNode(charc));
  214. }
  215. else if (ie_version) {
  216. sy.fontSize="1px";
  217. sy.width="0px";
  218. sy.height="0px";
  219. }
  220. else {
  221. dv.appendChild(document.createTextNode(charc));
  222. sy.color='rgba(0,0,0,0)';
  223. }
  224. ypos[ref]=Math.floor(shigh*Math.random());
  225. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  226. xpos[ref]=Math.floor(swide*Math.random());
  227. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  228. zpos[ref]=Math.random()*20;
  229. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  230. blob[ref]=dv;
  231. div.appendChild(blob[ref]);
  232. set_blob(ref);
  233. }
  234.  
  235. function rejig(ref, xy) {
  236. if (xy=='y') {
  237. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  238. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  239. }
  240. else {
  241. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  242. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  243. }
  244. }
  245.  
  246. function sign(a) {
  247. if (a<0) return (-2);
  248. else if (a>0) return (2);
  249. else return (0);
  250. }
  251.  
  252. function set_blob(ref) {
  253. var sy;
  254. sy=blob[ref].style;
  255. sy.top=ypos[ref]+'px';
  256. sy.left=xpos[ref]+'px';
  257. if (ie_version && ie_version<10) {
  258. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  259. sy.fontSize=30-zpos[ref]+"px";
  260. }
  261. else if (ie_version) {
  262. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  263. }
  264. else {
  265. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  266. sy.fontSize=40+zpos[ref]+'px';
  267. }
  268. }
  269.  
  270. function jamjar(ref) {
  271. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  272. ypos[ref]+=dy[ref];
  273. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  274. xpos[ref]+=dx[ref];
  275. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  276. zpos[ref]+=dz[ref];
  277. set_blob(ref);
  278. setTimeout("jamjar("+ref+")", speed);
  279. }
  280.  
  281. window.onresize=set_width;
  282. function set_width() {
  283. var sw_min=999999;
  284. var sh_min=999999;
  285. if (document.documentElement && document.documentElement.clientWidth) {
  286. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  287. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  288. }
  289. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  290. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  291. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  292. }
  293. if (document.body.clientWidth) {
  294. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  295. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  296. }
  297. if (sw_min==999999 || sh_min==999999) {
  298. sw_min=800;
  299. sh_min=600;
  300. }
  301. swide=sw_min;
  302. shigh=sh_min;
  303. }
  304. // ]]>
  305. </script>
  306.  
  307.  
  308.  
  309.  
  310.  
  311. <title>{Title}</title>
  312. <link rel="shortcut icon" href="{Favicon}">
  313. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  314. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  315.  
  316. <meta name="color:background" content="#000000"/>
  317. <meta name="color:text" content="#a1a0a0"/>
  318. <meta name="color:description" content=transparent/>
  319. <meta name="color:link" content="#e0d3ed"/>
  320. <meta name="color:link hover" content="#989898" />
  321. <meta name="color:bold" content="#cdc2f0" />
  322. <meta name="color:italic" content="#ffffff" />
  323. <meta name="color:border" content="#292828" />
  324. <meta name="color:scrollbar" content="#ffffff" />
  325. <meta name="color:postbg" content=transparent />
  326. <meta name="color:blockquote" content="#121212" />
  327. <meta name="color:tags" content="#e0d3ed"/>
  328.  
  329. <meta name="image:background" content=""/>
  330.  
  331. <meta name="text:link 1" content="link 1"/>
  332. <meta name="text:link 1 url" content="/"/>
  333. <meta name="text:link 2" content="link 2"/>
  334. <meta name="text:link 2 url" content="/"/>
  335. <meta name="text:link 3" content="link 3"/>
  336. <meta name="text:link 3 url" content="/"/>
  337. <meta name="text:link 4" content="link 4"/>
  338. <meta name="text:link 4 url" content="/"/>
  339. <meta name="text:link 5" content="link 5"/>
  340. <meta name="text:link 5 url" content="/"/>
  341. <meta name="text:link 6" content="link 6"/>
  342. <meta name="text:link 6 url" content="/"/>
  343. <meta name="text:link 7" content="link 7"/>
  344. <meta name="text:link 7 url" content="/"/>
  345. <meta name="text:link 8" content="link 8"/>
  346. <meta name="text:link 8 url" content="/"/>
  347.  
  348. <meta name="if:tinycursor" content="1"/>
  349. <meta name="if:greyscale" content="0"/>
  350. <meta name="text:text size" content="12px" />
  351. <meta name="if:showsubmit" content="0"/>
  352.  
  353. <meta name="color:updates bar" content="#070707"/>
  354. <meta name="image:Updates" content=""/>
  355. <meta name="image:thekey" content=""/>
  356.  
  357.  
  358.  
  359. <!--
  360. CUSTOM FONTS
  361. -->
  362.  
  363.  
  364. <script type="text/javascript" src="http://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js"></script>
  365. <script type="text/javascript">
  366. $(document).ready(function(){
  367. $(".links_body").hide();
  368. $(".links_head").click(function(){
  369. $(this).next(".links_body").slideToggle('fast');
  370. }); }); </script>
  371. <style type="text/css">
  372. .links_list { margin:0px; padding:0px; width:180px;}
  373. .links_head { padding-top:5px; padding-bottom:5px; cursor:pointer; position:relative; margin:1px; text-align:center;}
  374. .links_body { padding:10px; text-align:left; color: #fff; display:none;}
  375. </style>
  376.  
  377. <link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
  378.  
  379. <link href='https://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet'type='text/css'>
  380.  
  381. <link href='https://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type= 'text/css'>
  382.  
  383. <link href='https://fonts.googleapis.com/css?family=Cinzel:400,900' rel='stylesheet' type='text/css'>
  384.  
  385.  
  386. <link href="https://fonts.googleapis.com/css?family=Alex+Brush" rel="stylesheet">
  387.  
  388. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  389.  
  390.  
  391.  
  392. <script src="http://static.tumblr.com/uopakca/GVcnvdwbq/jquery.style-my-tooltips.js"></script>
  393.  
  394.  
  395.  
  396.  
  397. <style type="text/css">
  398.  
  399. /* Scrollbar */
  400.  
  401. ::-webkit-scrollbar {background-color:transparent; height:0px; width:1px}
  402. ::-webkit-scrollbar-thumb:vertical {background-color:transparent; height:50px}
  403. ::-webkit-scrollbar-thumb:horizontal {background-color:transparent}; height:10px!important}
  404.  
  405.  
  406. iframe.tmblr-iframe.tmblr-iframe--desktop-loggedin-controls.iframe-controls--desktop, .tmblr-iframe {
  407. position:fixed;
  408. top:10px!important;
  409. right:10px!important;
  410. white-space:nowrap;
  411. opacity:.7;transition: .8s ease-in-out;
  412. -webkit-transition: .8s ease-in-out;
  413. -moz-transition: .8s ease-in-out;
  414. -o-transition: .8s ease-in-out;}
  415.  
  416.  
  417. /* End Scrollbar */
  418.  
  419.  
  420.  
  421. /* the hover update thing */
  422.  
  423. #s-m-t-tooltip {
  424. max-width:300px;
  425. padding:4px; /* space around the text */
  426. margin:5px 10px 5px 0px; /* positioning of your hover info in relation to the link */
  427. color:#ffffff; /* text color */
  428. border:1px solid #ffffff; /* optional border and border color */
  429. font-family:'montserrat';
  430. text-transform:uppercase; /* i’ve added a custom font in here but you can remove this line if you don’t use custom fonts */
  431. font-size:09px; /* font size of your hover info */
  432. letter-spacing:1px; /* optional letter spacing */
  433. background:#000; /* change the background color of your hover info */
  434. background-image:url("http://static.tumblr.com/d4e03as/RVVogyncx/570093ae4c87bd6287f61b31283506d4.png");
  435. z-index:99999;}
  436.  
  437. body {
  438. background-color:#000000;
  439. font-family:arial;
  440. text-shadow: 1px 1px 1px #9a9a9a;
  441. font-size: 12px;
  442. color:#ffffff;
  443. background-image:url("http://static.tumblr.com/d4e03as/bmjogymfg/screenshot_2016-11-21_00.png");
  444. background-position:top left;
  445. background-repeat: no-repeat;
  446. background-attachment: fixed;
  447. }
  448.  
  449. a {
  450. text-decoration:none;
  451. color:#ffffff;
  452. -webkit-transition: all 0.7s ease;
  453. -moz-transition: all 0.7s ease;
  454. -o-transition: all 0.7s ease;
  455. font-size:12px;
  456. font-weight:bold;
  457. font-family:'montserrat';
  458. text-transform:uppercase;
  459. }
  460.  
  461. a:hover {
  462. color:#ffffff;
  463. -webkit-filter: blur(4px);
  464. }
  465.  
  466. b, strong {
  467. color:#ffffff;
  468. text-transform:none;
  469. font-weight:bolder;
  470. font-family:'montserrat';
  471. font-size: 14px;
  472. text-shadow: 0px 0px 3px #ffffff;
  473.  
  474.  
  475. }
  476.  
  477. i, em {
  478. color:#ffffff;
  479. font-family: 'Alex Brush';
  480.  
  481. font-size: 22px;
  482. text-shadow: 0px 0px 3px #ffffff;
  483.  
  484. }
  485.  
  486. small,sup,sub {
  487. color:#ffffff;
  488. font-size:12px;
  489. }
  490.  
  491. big {
  492. color:#ffffff;
  493. font-size:16px;
  494. }
  495.  
  496. pre {
  497. color:;
  498. font-size:12px;
  499. padding: 5px;
  500. white-space: pre-wrap;
  501. white-space: -moz-pre-wrap;
  502. white-space: -pre-wrap;
  503. white-space: -o-pre-wrap;
  504. word-wrap: break-word;
  505. }
  506.  
  507. blockquote {
  508. padding:0px 7px;
  509. margin:3px 0 3px 8px;
  510. border-left:1px solid #ffffff;
  511. }
  512.  
  513. blockquote img {
  514. max-width:100%;
  515. height:auto;
  516. }
  517.  
  518. img {
  519. max-width: 100%;
  520. height:auto;
  521. }
  522.  
  523. h1 {
  524. font-size:16px;
  525. text-align:center;
  526. letter-spacing:1px;
  527. text-transform:uppercase;
  528. font-family:'montserrat';
  529. padding:3px;
  530. border: 1px solid #ffffff;
  531. text-shadow: 0px 0px 3px #ffffff;
  532.  
  533.  
  534. }
  535.  
  536. h2 {
  537. font-size:16px;
  538. text-align:center;
  539. letter-spacing:1px;
  540. text-transform:uppercase;
  541. font-family:'montserrat';
  542. padding:3px;
  543.  
  544. text-shadow: 0px 0px 3px #ffffff;
  545.  
  546. }
  547.  
  548. h4 {
  549. background-image:url('http://static.tumblr.com/d4e03as/RVVogyncx/570093ae4c87bd6287f61b31283506d4.png');
  550. text-transform: uppercase;
  551. font-weight: bold;
  552. font-size: 12px;
  553. text-align: center;
  554. padding: 15px;
  555. border:1px solid #ffffff;
  556. letter-spacing:1px;
  557. font-family:'montserrat';
  558. color:#fff;
  559. -moz-transition-duration:0.5s;
  560. -webkit-transition-duration:0.5s;
  561. -o-transition-duration:0.5s;
  562. }
  563.  
  564.  
  565.  
  566. #container {
  567. position:absolute;
  568. left:607px;
  569. height:477px;
  570. overflow-x:scroll;
  571. width:270px;
  572. top:188px;
  573. border: double 3px #ffffff;
  574. background-color: #000000;
  575. }
  576.  
  577. .posts {
  578. width:250px;
  579. padding:10px;
  580. margin-bottom:30px;
  581. }
  582.  
  583. .posts {
  584. opacity:1;
  585. -webkit-transition: all 0.6s ease-in-out;
  586. -moz-transition: all 0.6s ease-in-out;
  587. -o-transition: all 0.6s ease-in-out;
  588. -ms-transition: all 0.6s ease-in-out;
  589. transition: all 0.6s ease-in-out;
  590. }
  591.  
  592.  
  593. /*TAGS*/
  594. .tags {
  595. font-family:'garamond';
  596. color:#ffffff;
  597.  
  598. width:140px;
  599. height:35px;
  600. margin-left:3px;
  601. text-transform:uppercase;
  602. font-size:9px;
  603. border:double 3px #ffffff;
  604. text-align:justify;
  605. background:transparent;
  606. padding:5px;
  607. overflow:scroll;
  608. text-transform:uppercase;
  609. -moz-transition-duration:0.5s;
  610. -webkit-transition-duration:0.5s;
  611. -o-transition-duration:0.5s;
  612. -webkit-transition: all 0.5s ease-in-out;
  613. background:url("http://static.tumblr.com/d4e03as/RVVogyncx/570093ae4c87bd6287f61b31283506d4.png");
  614. background-attachment:fixed;
  615. background-position: -120px 20px;
  616. }
  617.  
  618. .tags a {
  619. color:#ffffff;
  620. font-size:9px;
  621. -moz-transition-duration:0.5s;
  622. -webkit-transition-duration:0.5s;
  623. -o-transition-duration:0.5s;
  624. -webkit-transition: all 0.5s ease-in-out;
  625. text-decoration:none;
  626. }
  627.  
  628. .tags a:hover {
  629. -moz-transition-duration:0.5s;
  630. -webkit-transition-duration:0.5s;
  631. -o-transition-duration:0.5s;
  632. -webkit-transition: all 0.5s ease-in-out;
  633. text-decoration:none;
  634. }
  635.  
  636. /*INFO*/
  637. #info {
  638. font-family:times;
  639. margin-top:20px;
  640. margin-left:-7px;
  641. width:180px;
  642. height:25px;
  643. margin-top:1px;
  644. padding-top:5px;
  645. margin-left:17px;
  646. word-spacing:1px;
  647. font-size:11px;
  648. color:#ffffff;
  649. text-shadow:0px 0px 2px #5C5651,
  650. 0px 0px 2px #5C5651,
  651. 0px 0px 3px #45453F,
  652. 0px 0px 4px #45453F;
  653. text-transform:uppercase;
  654. font-style:normal;
  655. text-align:center;
  656. -moz-transition-duration:0.5s;
  657. -webkit-transition-duration:0.5s;
  658. -o-transition-duration:0.5s;
  659. }
  660.  
  661. #info a {
  662. margin-right:2px;
  663. color:#ffffff;
  664. text-shadow:0px 0px 2px #5C5651,
  665. 0px 0px 2px #5C5651,
  666. 0px 0px 3px #45453F,
  667. 0px 0px 4px #45453F;
  668. font-size:20px;
  669. font-style:normal;
  670. }
  671.  
  672. .info a {
  673. color:#ffffff;
  674. text-shadow:0px 0px 2px #5C5651,
  675. 0px 0px 2px #5C5651,
  676. 0px 0px 3px #45453F,
  677. 0px 0px 4px #45453F;
  678. }
  679.  
  680. #sidebar {
  681. position:fixed;
  682. left:0px;
  683. top:300px;
  684. height:350px;
  685. width:200px;
  686. background:transparent;
  687. background-position: bottom left;
  688. background-repeat:no-repeat;
  689. background-attachment:fixed;
  690. }
  691.  
  692. #desc {
  693. margin-top:188px;
  694. margin-left:893px;
  695. padding:8px;
  696. padding-left:10px;
  697. padding-bottom:7px;
  698. padding-top:0px;
  699. width:145px;
  700. height:470px;
  701. font-size:10px;
  702. overflow-x:scroll;
  703. font-family:calibri;
  704. border: double 3px #ffffff;
  705. text-transform:uppercase;
  706. background:#000000;
  707. }
  708.  
  709. #desctwo {
  710. margin-top:-483px;
  711. margin-left:290px;
  712. padding:8px;
  713. padding-left:10px;
  714. padding-bottom:7px;
  715. padding-top:0px;
  716. width:283px;
  717. height:470px;
  718. font-size:10px;
  719. overflow-x:scroll;
  720. font-family:calibri;
  721. border: double 3px #ffffff;
  722. text-transform:uppercase;
  723. background:#000000;
  724. }
  725.  
  726.  
  727.  
  728. #desctit {
  729. letter-spacing:1px;
  730. font-size:11px;
  731. padding:8px;
  732. font-family:'montserrat';
  733. text-transform:uppercase;
  734. font-weight:bolder;
  735. text-align:center;
  736. color:#fff;
  737. border:double 3px #ffffff;
  738. background-image: url("/");
  739. background-image:url('http://static.tumblr.com/d4e03as/RVVogyncx/570093ae4c87bd6287f61b31283506d4.png');
  740. -moz-transition-duration:0.5s;
  741. -webkit-transition-duration:0.5s;
  742. -o-transition-duration:0.5s;
  743. background-attachment:fixed;
  744.  
  745. }
  746.  
  747.  
  748.  
  749. /* JUMBLED LINKS START !!!!!!!!!!!! */
  750.  
  751. /*home button*/
  752. .alinks {
  753. position:fixed; /* Keep this!!*/
  754. margin-top:-262px;
  755. font-size: 50px;
  756. margin-left:482px;
  757. width:400px;
  758. }
  759.  
  760. .alinks a {
  761. font-size: 40px;
  762. opacity: 1;
  763. color:#ffffff;
  764. text-shadow:0px 0px 4px #ffffff;
  765. -webkit-filter: blur(0.05px)
  766. }
  767.  
  768. .alinks a:hover {
  769. color:#ffffff;
  770. text-shadow:0px 0px 3px #000000;
  771. -webkit-filter: blur(4px);}
  772.  
  773. /*ask button*/
  774. .blinks {
  775. position:fixed; /* Keep this!!*/
  776. margin-top:-190px;
  777. font-size: 15px;
  778. margin-left:455px;
  779. width:30px;
  780.  
  781. }
  782.  
  783. .blinks a {
  784. font-size: 30px;
  785. opacity: 1;
  786. color:#ffffff;
  787. text-shadow:0px 0px 3px #000000;
  788. -webkit-filter: blur(1.05px)
  789. }
  790.  
  791. .blinks a:hover {
  792. color:#ffffff;
  793. text-shadow:0px 0px 3px #000000;
  794. -webkit-filter: blur(4px);
  795. }
  796.  
  797. /*submit button*/
  798. .clinks {
  799. position:fixed; /* Keep this!!*/
  800. margin-top:-170px;
  801. margin-left:480px;
  802. width:30px;
  803.  
  804. }
  805.  
  806. .clinks a {
  807. font-size: 40px;
  808. opacity: 1;
  809. color:#ffffff;
  810. text-shadow:0px 0px 3px #000000;
  811. -webkit-filter: blur(1.05px)
  812. }
  813.  
  814. .clinks a:hover {
  815. color:#ffffff;
  816. text-shadow:0px 0px 3px #000000;
  817. -webkit-filter: blur(4px);
  818. }
  819.  
  820. /*rules button*/
  821. .dlinks {
  822. position:fixed; /* Keep this!!*/
  823. margin-top:-235px;
  824. font-size: 15px;
  825. margin-left:880px;
  826. width:30px;
  827.  
  828. }
  829.  
  830. .dlinks a {
  831. font-size: 30px;
  832. opacity: 1;
  833. color:#ffffff;
  834. text-shadow:0px 0px 3px #000000;
  835. -webkit-filter: blur(1.05px)
  836. }
  837.  
  838. .dlinks a:hover {
  839. color:#ffffff;
  840. text-shadow:0px 0px 3px #000000;
  841. -webkit-filter: blur(4px);
  842. }
  843.  
  844. /*nav button*/
  845. .elinks {
  846. position:fixed; /* Keep this!!*/
  847. margin-top:-280px;
  848. font-size: 25px;
  849. margin-left:880px;
  850. width:30px;
  851.  
  852. }
  853.  
  854. .elinks a {
  855. font-size: 40px;
  856. opacity: 1;
  857. color:#ffffff;
  858. text-shadow:0px 0px 3px #000000;
  859. -webkit-filter: blur(1.05px)
  860. }
  861.  
  862. .elinks a:hover {
  863. color:#ffffff;
  864. text-shadow:0px 0px 3px #000000;
  865. -webkit-filter: blur(4px);
  866. }
  867.  
  868.  
  869. /*credit button*/
  870. .flinks {
  871. position:fixed; /* Keep this!!*/
  872. margin-top:-280px;
  873. font-size: 15px;
  874. margin-left:850px;
  875. width:50px;
  876.  
  877. }
  878.  
  879. .flinks a {
  880. font-size: 30px;
  881. opacity: 1;
  882. color:#ffffff;
  883. text-shadow:0px 0px 3px #000000;
  884. -webkit-filter: blur(1.05px)
  885. }
  886.  
  887. .flinks a:hover {
  888. color:#ffffff;
  889. text-shadow:0px 0px 3px #000000;
  890. -webkit-filter: blur(4px);
  891. }
  892.  
  893. /*muse 1*/
  894. .glinks {
  895. position:fixed; /* Keep this!!*/
  896. margin-top:0px;
  897. font-size: 20px;
  898. margin-left:370px;
  899. width:50px;
  900.  
  901. }
  902.  
  903. .glinks a {
  904. font-size: 40px;
  905. opacity: 1;
  906. color:#ffffff;
  907. text-shadow:0px 0px 3px #000000;
  908.  
  909.  
  910. }
  911.  
  912. .glinks a:hover {
  913. color:#ffffff;
  914. text-shadow:0px 0px 3px #000000;
  915. -webkit-filter: blur(4px);
  916. }
  917.  
  918. /*muse 2 button*/
  919. .hlinks {
  920. position:fixed; /* Keep this!!*/
  921. margin-top:0px;
  922. font-size: 20px;
  923. margin-left:424px;
  924. width:50px;
  925.  
  926. }
  927.  
  928. .hlinks a {
  929. font-size: 45px;
  930. opacity: 1;
  931. color:#ffffff;
  932. text-shadow:0px 0px 3px #ffffff;
  933.  
  934. }
  935.  
  936. .hlinks a:hover {
  937. color:#000000;
  938. text-shadow:0px 0px 3px #000000;
  939. -webkit-filter: blur(4px);
  940. }
  941.  
  942. /*muse 3 button*/
  943. .ilinks {
  944. position:fixed; /* Keep this!!*/
  945. margin-top:0px;
  946. font-size: 20px;
  947. margin-left:478px;
  948. width:50px;
  949.  
  950. }
  951.  
  952. .ilinks a {
  953. font-size: 45px;
  954. opacity: 1;
  955. color:#000000;
  956. text-shadow:0px 0px 3px #000000;
  957.  
  958. }
  959.  
  960. .ilinks a:hover {
  961. color:#000000;
  962. text-shadow:0px 0px 3px #000000;
  963. -webkit-filter: blur(4px);
  964. }
  965.  
  966. .credit {
  967. position:fixed;
  968. text-shadow: 0px 0px 11px #7C6868;
  969. right:15px;
  970. bottom:15px;
  971. transform: rotate(0deg);
  972. font-family: helvetica;
  973. font-size: 14px; }
  974.  
  975.  
  976. .credit a {
  977. padding:10px;
  978. color:#fff;
  979. margin-right:0px;
  980. -webkit-filter: blur(1px);
  981. -webkit-transition: 0.8s ease-in;
  982. -moz-transition: 1s ease-in;
  983. transition: 1s ease-in;
  984. }
  985.  
  986. .credit a:hover {
  987. -webkit-transition: all 0.6s ease-in-out;
  988. -moz-transition: all 0.6s ease-in-out;
  989. -o-transition: all 0.6s ease-in-out;
  990. -ms-transition: all 0.6s ease-in-out;
  991. transition: all 0.6s ease-in-out;
  992. color: #000000;
  993. text-shadow: 2px 2px 2px #000000;
  994. }
  995.  
  996.  
  997.  
  998. /* JUMBLED LINKS ENDING !!!!!!!!!! */
  999.  
  1000. #pagination {
  1001. position:fixed;
  1002. bottom:200px;
  1003. left:1220px;
  1004. }
  1005.  
  1006. #pagination a {
  1007. color:#ffffff;
  1008. font-size:40px;
  1009. -webkit-transition: all 0.7s ease;
  1010. -moz-transition: all 0.7s ease;
  1011. -o-transition: all 0.7s ease;
  1012. }
  1013.  
  1014. #pagination a:hover {
  1015. color:#ffffff;
  1016. -webkit-filter: blur(4px);
  1017. }
  1018.  
  1019. /* ASKER */
  1020.  
  1021.  
  1022. #url {
  1023. position:relative;
  1024. background:transparent;
  1025. width:250px;
  1026. margin-top:20px;
  1027. height:55px;
  1028. letter-spacing:2px;
  1029. font-family:'montserrat';
  1030. text-transform:uppercase;
  1031. font-weight:bolder;
  1032. text-align:center;
  1033. font-size:20px;
  1034. background-image:url('http://static.tumblr.com/d4e03as/fq8ogyrgz/untixxxxxxxxxxxtled-1.png');
  1035. text-align:center;
  1036. padding-bottom:15px;
  1037. padding-top:10px;
  1038.  
  1039. box-shadow:0px 0 1px rgba(0,0,0,0);}
  1040. -webkit-box-shadow:0px 0 1px rgba(0,0,0,0);
  1041. -moz-box-shadow:0px 0 1px rgba(0,0,0,0);
  1042. #url a {
  1043. letter-spacing:1px;
  1044. font-size:20px;
  1045. padding:8px;
  1046. font-family:'montserrat';
  1047. text-transform:uppercase;
  1048. font-weight:bolder;
  1049. text-align:center;
  1050. color:#fff;
  1051. text-shadow: 0px 0px 3px #ffffff;
  1052. }
  1053.  
  1054. #question {
  1055. font-size:11.5px;
  1056. text-align:justify;
  1057. font-family: 'Montserrat';
  1058. padding:5px;
  1059. line-height:100%;
  1060. letter-spacing:0px;
  1061. background:#000000;
  1062. border :3px double #ffffff;}
  1063.  
  1064. /* ASKER END */
  1065.  
  1066. .quote {
  1067. font-size:13px;
  1068. letter-spacing:1px;
  1069. text-align:center;
  1070. border-bottom:1px solid #eee;
  1071. margin-bottom:5px;
  1072. padding-bottom:3px;
  1073. }
  1074.  
  1075. .quotesource {
  1076. font-size:10px;
  1077. letter-spacing:1px;
  1078. text-align:center;
  1079. margin-bottom:5px;
  1080. }
  1081.  
  1082.  
  1083. /* IMESSAGE CHAT POST */
  1084. .answer span,.convo li{margin:0 0 5px;border-radius:1em;padding:.5em 10px;max-width:75%;clear:both;position:relative}.answer .them,.user_1,.user_3,.user_5,.user_7,.user_9,.user_11{float:left;background:#e5e5ea;color:#000;left:3px}.me::after,.user_1::after,.user_3::after,.user_5::after,.user_7::after,.user_9::after,.user_11::after{content:"";position:absolute;left:-.5em;bottom:0;width:.5em;height:1em;border-right:.5em solid #e5e5ea;border-bottom-right-radius:1em .5em}.answer .me,.user_2,.user_4,.user_6,.user_8,.user_10,.user_12{right:3px;float:right;background-color:#e8f3f9;color:#000}.them::after,.user_2::after,.user_4::after,.user_6::after,.user_8::after,.user_10::after,.user_12::after{content:"";position:absolute;right:-.5em;bottom:0;width:.5em;height:1em;border-left:.5em solid #e8f3f9;border-bottom-left-radius:1em .5em}.me p,.answer,.asked span{padding:0;margin:0}.answer{overflow:hidden}
  1085. .asked p {
  1086. text-align: left;
  1087. margin: 0 0px 10px 0px;
  1088. padding: 0;
  1089. color: #666666;
  1090. font-family: 'Inconsolata', Inconsolata;
  1091. font-size: 12px;
  1092. line-height: 0px;
  1093. }
  1094. .footerright .viasrc {
  1095. float: left;
  1096. }
  1097. .asked a {
  1098. margin:0;padding:0;
  1099. }
  1100. .user_4{background-color:#55caff;color:#fff}.user_4::after{border-color:#55caff}.user_6{background-color:#60f246;color:#fff}.user_6::after{border-color:#60f246}.user_5{background-color:#9ff3fc;color:#000}.user_5::after{border-color:#9ff3fc}.user_3{background-color:#25c413;color:#fff}.user_3::after{border-color:#25c413}.user_7{background-color:#9b9b9b;color:#fff}.user_7::after{border-color:#9b9b9b}.user_8{background-color:#0d9321;color:#fff}.user_8::after{border-color:#0d9321}.user_9{background-color:#606060;color:#fff}.user_9::after{border-color:#606060}
  1101. .convo {
  1102. overflow: hidden;
  1103. list-style-type: none;
  1104. padding: 0;
  1105. margin: 0;
  1106. }
  1107.  
  1108. /* POP UPS START !!!!!! */
  1109.  
  1110. /*BUTTONS START*/
  1111.  
  1112. .button {
  1113. display:inline-block;
  1114. text-align:center;
  1115. width:150px;
  1116. margin:4px;
  1117. padding:5px;
  1118. background-color:#000000;
  1119. color:#aeaeae;
  1120. border:double 3px #ffffff;
  1121. font-family:verdana;
  1122. }
  1123.  
  1124. .button {
  1125. display:inline-block;
  1126. text-align:center;
  1127. width:150px;
  1128. margin:4px;
  1129. padding:5px;
  1130. background-color:#000000;
  1131. color:#aeaeae;
  1132. border:double 3px #ffffff;
  1133. font-family:verdana;
  1134. }
  1135.  
  1136. .button:hover {
  1137. background-color:#ffcce6;
  1138. -webkit-filter: blur(0px);
  1139.  
  1140. }
  1141.  
  1142. /* NORMAL POP UPS START !!! */
  1143.  
  1144. .popup_block{
  1145. display:none;
  1146. background: url("");
  1147. background-color:#000000;
  1148. width:400px;
  1149. max-height: 600px;
  1150. overflow-y:scroll;
  1151. overflow-x:hidden;
  1152. padding:5px;
  1153. border:double 3px #ffffff; /* if you want a solid white pop-up, delete this */
  1154. float:left;
  1155. position:fixed;
  1156. top:50%;left:50%;
  1157. z-index: 99999;
  1158. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  1159. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  1160. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  1161. }
  1162.  
  1163. *html #fade {position: absolute;}
  1164. *html .popup_block {position: absolute;}
  1165. #fade {
  1166. display:none;
  1167. position:fixed;
  1168. left:0px;
  1169. top:0px;
  1170. width:100%;
  1171. height:100%;
  1172. z-index:9999;
  1173. background:#000000;; /* change to #fff for solid white */
  1174. opacity:0.9; /* change to opacity:1; */
  1175. }
  1176.  
  1177. #text {
  1178. top:50%; *
  1179. left:50%; *
  1180. margin-top:0px; *
  1181. margin-left:400px; *
  1182. width:200px; **
  1183. height:350px; **
  1184. overflow:scroll; **
  1185. text-align:justify;
  1186. font-family:arial bold;
  1187.  
  1188. padding:2px;
  1189. font-size: 11px;
  1190. color:#ddd;
  1191. padding:0px;
  1192. }
  1193.  
  1194. #popheader {
  1195. letter-spacing:1px;
  1196. font-size:11px;
  1197. padding:5px;
  1198. padding-left:7px;
  1199. font-family:'montserrat';
  1200. text-transform:uppercase;
  1201. font-weight:bolder;
  1202. text-align:center;
  1203. color:#fff;
  1204. border:1px solid #eee;
  1205. background-image: url("/");
  1206. background-image:url('http://static.tumblr.com/d4e03as/ZU3ogyneg/570093ae4c87bd6287f61b31283506d4.png');
  1207. -moz-transition-duration:0.5s;
  1208. -webkit-transition-duration:0.5s;
  1209. -o-transition-duration:0.5s;
  1210. }
  1211.  
  1212.  
  1213.  
  1214. /* NORMAL POP UPS OVER !!! */
  1215.  
  1216. /* VERSES - TABS THINGY START */
  1217.  
  1218. #headerbar{
  1219. left:50%;
  1220. top:50%;
  1221. margin-left:….px; /*– for placing –*/
  1222. margin-top:…px; /*– for placing –*/
  1223. width:…px; /*– sets width of your text –*/
  1224. overflow:hidden;
  1225.  
  1226. text-align:justify;
  1227. color:#ffffff;
  1228. font-family:‘montserrat’;
  1229. text-transform:uppercase;
  1230. font-weight:bolder;
  1231. font-size:12px;
  1232. overflow-x:hidden;
  1233. padding:5px;
  1234. }
  1235.  
  1236.  
  1237. #tabbar{
  1238. left:50%;
  1239. top:50%;
  1240. margin-top:5px;
  1241. margin-left:…px; /*– for placing –*/
  1242. margin-left:…px; /*– for placing –*/
  1243. width:…px; /*– sets width of your text –*/
  1244. height:…px; /*– sets height of your text –*/
  1245. overflow: hidden;
  1246. text-align:justify;
  1247. color:#ffffff;
  1248. font-family:calibri;
  1249. font-size:12px;
  1250. overflow-x:hidden;
  1251. padding: 2px;
  1252.  
  1253. }
  1254.  
  1255. ul#tabs {
  1256. text-align: center;
  1257. overflow-x:hidden;
  1258. }
  1259.  
  1260.  
  1261. ul#tabs li { /*– your inactive / not viewed tabs –*/
  1262. display:inline-block;
  1263. padding:2px;
  1264. cursor:pointer;
  1265. border:1px solid #ffffff;
  1266. text-decoration:none;
  1267. opacity:1;
  1268. color:#ffffff;
  1269. overflow-x:hidden;
  1270. }
  1271.  
  1272. ul#tabs li.active { /*– your active tab –*/
  1273. background-color:#ffb3d9;
  1274. color:#ffffff;
  1275. background-image:url('http://static.tumblr.com/d4e03as/ZU3ogyneg/570093ae4c87bd6287f61b31283506d4.png');
  1276. -webkit-transition:
  1277. all 0.5s ease-out;
  1278. -moz-transition: all 0.5s ease-out;
  1279. transition: all 0.5s ease-out;
  1280. overflow-x:hidden;
  1281. }
  1282.  
  1283. ul#tab, ul#tabs{
  1284. list-style-type:none;margin:0px;padding:0px;
  1285. overflow-x:hidden;
  1286. }
  1287.  
  1288. ul#tab li.active {
  1289. display: block;}
  1290.  
  1291. ul#tab li {
  1292. display: none;}
  1293.  
  1294.  
  1295.  
  1296.  
  1297.  
  1298. /* VERSES - TABS THINGY OVER */
  1299.  
  1300. /* POP UPS OVER !!!!!! */
  1301.  
  1302. .pulse{
  1303. animation-name: pulse;
  1304. -webkit-animation-name: pulse;
  1305.  
  1306. animation-duration: 3s;
  1307. -webkit-animation-duration: 3s;
  1308.  
  1309. animation-iteration-count: infinite;
  1310. -webkit-animation-iteration-count: infinite;
  1311. }
  1312.  
  1313. @keyframes pulse {
  1314. 0% {
  1315. transform: scale(0.9);
  1316. opacity: 0.4;
  1317. }
  1318. 50% {
  1319. transform: scale(1);
  1320. opacity: 1;
  1321. }
  1322. 100% {
  1323. transform: scale(0.9);
  1324. opacity: 0.4;
  1325. }
  1326. }
  1327.  
  1328. @-webkit-keyframes pulse {
  1329. 0% {
  1330. -webkit-transform: scale(0.95);
  1331. opacity: 0.4;
  1332. }
  1333. 50% {
  1334. -webkit-transform: scale(1);
  1335. opacity: 1;
  1336. }
  1337. 100% {
  1338. -webkit-transform: scale(0.95);
  1339. opacity: 0.4;
  1340. }
  1341. }
  1342.  
  1343.  
  1344.  
  1345. *, body, a, a:hover {cursor: url(http://media.tumblr.com/tumblr_mem9zjUXhw1rqv2lu.png), auto;}
  1346.  
  1347.  
  1348. </style>
  1349.  
  1350.  
  1351.  
  1352.  
  1353. </head>
  1354.  
  1355. <body>
  1356.  
  1357. <div id="desc"><p><div id="desctit">ABOUT</div><center><p>
  1358. Lorem ipsum dolor sit amet, consectetur adipiscing.</b><br>
  1359. Lorem ipsum dolor sit amet, consectetur.</p>
  1360.  
  1361.  
  1362.  
  1363. <div id="desctit">MUNDANE</div>
  1364.  
  1365. <P>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci.</P>
  1366.  
  1367. <div id="desctit">IMPORTANT</div>
  1368. <P>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </P>
  1369. Lorem ipsum dolor sit amet<br>
  1370.  
  1371. <p><marquee><B>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. </B></marquee><br><br>
  1372.  
  1373. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo.
  1374.  
  1375. <div id="desctit">BLOGS</DIV>
  1376. <p><b>
  1377. <a href="http://URLHERE.tumblr.com" title="BLOGNAMEHERE"> ✸</a>
  1378. <a href="http://URLHERE.tumblr.com" title="BLOGNAMEHERE"> ✸</a></b></p>
  1379.  
  1380. </center> </div>
  1381.  
  1382.  
  1383.  
  1384.  
  1385.  
  1386. <div id="box1" class="popup_block">
  1387. <div id="popheader">CREDITS</div>
  1388. <div id="text">POP UP UNDER CONSTRUCTION</div>
  1389. </div>
  1390.  
  1391. </div></div></div></div></div></div></div></div></div></div>
  1392.  
  1393. <div id="box2" class="popup_block">
  1394. <div id="popheader">INTRODUCTION</div>
  1395. <div id="text">
  1396. So, lets start off by me introducing myself! My name is Aditi & a lot of people also known me as Addie on here. I am a 19 year old from Delhi, India & I only started role playing in March 2014. she/her pronouns. Tumblr I.M. and asks are your best bet if you want to talk to me. I am not Hayden Romero nor Victoria Moroles nor am I affiliated with MTV, the crew and cast of Teen Wolf. However, all the icons, graphics, backgrounds, etc. that I use on this blog are mine (unless stated otherwise). The theme code I'm using was coded from scratch by me too. None of it is for personal use!
  1397. </div>
  1398.  
  1399. <div id="popheader">FOLLOW & UNFOLLOW</div>
  1400. <div id="text">
  1401. This is a highly selective & semi private roleplay blog, which means that I will not the following everyone back! That said, my criteria for following someone back is based completely on the way you portray your muse & your writing skills, not on your ‘aesthetic’. I also probably won’t follow you back if you I cant see our characters interacting.
  1402. </div>
  1403.  
  1404. <div id="popheader">THREADS & MEMES</div>
  1405. <div id="text">
  1406. I do not make greeters, but I do respond to the ones made for me by mutuals as long as you give me enough to go on. My open starters are usually open to non-mutuals unless stated otherwise, but I am selective about replying. Mutual can feel free to tag me in starters & send me a shit ton of memes. I will not respond to memes sent by non mutuals. I have nothing against memes being converted into threads as long as you make a separate text post instead of just reblogging the ask. My inbox and I.M. is always open for mutuals for plotting!
  1407. </div>
  1408.  
  1409. <div id="popheader">FORMATTING</div>
  1410. <div id="text">
  1411. I prefer using 110px rp icons & sup text. I don’t care how you format your replies, you can use plain text or fancy HTML or whatever you want, I don’t mind! All I ask is that you cut your posts & refrain from using rp icons/gifs bigger than 250px. Uncut posts & large ass gifs annoy the hell out of me & usually demotivate me from replying.
  1412. </div>
  1413.  
  1414. </div>
  1415.  
  1416. </div></div></div></div></div></div></div></div></div></div>
  1417.  
  1418. <div id="box3" class="popup_block">
  1419. <div id="popheader">NAVIGATION</div>
  1420. <div id="text">
  1421. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  1422. </div>
  1423. </div>
  1424.  
  1425. </div></div></div></div></div></div></div></div></div></div>
  1426.  
  1427. <div id="box4" class="popup_block">
  1428. <div id="popheader">SUBMIT</div>
  1429. <iframe frameborder="0" scrolling="no" width="100%" height="400" id="submit_form" src="http://www.tumblr.com/submit_form/anotheranotherbread.tumblr.com"></iframe>
  1430.  
  1431. </div>
  1432.  
  1433. </div></div></div></div></div></div></div></div></div></div>
  1434.  
  1435. <div id="box5" class="popup_block">
  1436. <div id="popheader">ASK</div>
  1437. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/anotheranotherbread.tumblr.com" width="100%"></iframe>
  1438. </div>
  1439.  
  1440. </div></div></div></div></div></div></div></div></div></div>
  1441.  
  1442.  
  1443.  
  1444. <div id="box6" class="popup_block">
  1445. <div id="popheader">KATHERINE PIERCE</div>
  1446.  
  1447. <div id="headerbar">
  1448. <ul id="tabs">
  1449. <li class="active">ABOUT</li>
  1450. <li>VERSES</li>
  1451. <li>LINKS</li>
  1452. <li>EXCLUSIVES & MAINS</li>
  1453. </ul></div>
  1454. <div id="tabbar">
  1455. <ul id="tab">
  1456.  
  1457. <li class="active">
  1458.  
  1459. <div align="center"><img src="http://static.tumblr.com/d4e03as/VFUofrgzi/tvd_4x23-12.png"></div>
  1460.  
  1461. <div id="text">
  1462. <h4>CANON</h4>
  1463. Katherine's canon bio can be found <a href="http://vampirediaries.wikia.com/wiki/Katerina_Petrova">HERE</a>!
  1464. <h4>MY INTERPRETATION</h4>
  1465. My portrayal of Katherine stops being canon - compliant after s4e23 'GRADUATION'. After Elena forcefully feeds the CURE to Katherine, the cure takes effect and knocks Katherine unconscious. She wakes up human, alone and vulnerable. A late night encounter in a dark alley with an old enemy, brings about an revelation that turns her world upside down. She realizes that even a drop of her blood, if consumed by a vampire, will instantly cure them of vampirism and make them human once again. Katherine doesn’t experience fast-aging and death in this verse, nor does she possess Elena or does any other things that happen in the canon after season 4.
  1466. <h4>MY HEADCANONS</h4>
  1467. TO BE ADDED!
  1468. </div>
  1469.  
  1470. </li>
  1471.  
  1472. <li>
  1473.  
  1474. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="https://66.media.tumblr.com/bc95035d37943b18bf2396636a0c1a15/tumblr_inline_ofrkwnfkPN1uxt42x_540.png"/></p>
  1475. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1476. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE 001</blockquote>
  1477. <p>Post season 4 & canon upto S4E23. After Elena forcefully feeds the CURE to Katherine, the cure takes effect and knocks Katherine unconscious. She wakes up human, alone and vulnerable. A late night encounter in a dark alley with an old enemy, brings about an revelation that turns her world upside down. She realizes that even a drop of her blood, if consumed by a vampire, will instantly cure him/her of vampirism and make them human once again. Katherine doesn’t experience fast-aging and death in this verse, nor does she possess Elena or does any other things that happen in the canon after season 4.</p>
  1478.  
  1479. </div>
  1480.  
  1481. <hr></hr>
  1482. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="https://65.media.tumblr.com/710a4adb27d32c3c10416e6aada031d4/tumblr_inline_ofrleqe0Lw1uxt42x_540.png" /></p>
  1483. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1484. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE 002</blockquote>
  1485. <p>This verse is based in seasons one to four, where she’s still a vampire.</p>
  1486. </div>
  1487.  
  1488.  
  1489. </li>
  1490.  
  1491. <li>
  1492.  
  1493. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  1494.  
  1495. </li>
  1496.  
  1497. <li>
  1498.  
  1499. TO BE ADDED!
  1500.  
  1501. </li>
  1502.  
  1503. </ul> <!– important. don’t delete –>
  1504. </div></div></div></div></div></div></div></div></div></div></div></div>
  1505.  
  1506. <div id="box7" class="popup_block">
  1507. <div id="popheader">ERICA REYES</div>
  1508.  
  1509. <div id="headerbar">
  1510. <ul id="tabs">
  1511. <li class="active">ABOUT</li>
  1512. <li>VERSES</li>
  1513. <li>LINKS</li>
  1514. <li>EXCLUSIVES & MAINS</li>
  1515. </ul></div>
  1516. <div id="tabbar">
  1517. <ul id="tab">
  1518.  
  1519. <li class="active">
  1520.  
  1521. <div align="center"><img src="https://66.media.tumblr.com/181c782dbcf7bd9d6c3d81aae590fc57/tumblr_inline_ofx2935rAy1uxt42x_540.png"></div>
  1522.  
  1523. <div id="text">
  1524. <h4>CANON</h4>
  1525. Erica's canon bio can be found <a href="http://teenwolf.wikia.com/wiki/Erica">HERE</a>!
  1526. <h4>MY INTERPRETATION</h4>
  1527. My portrayal of Erica stops being canon - compliant after s2e12 'Master Plan'. Head on to the ' Verses ' tab for more information.
  1528. <h4>MY HEADCANONS</h4>
  1529. TO BE ADDED!
  1530. </div>
  1531.  
  1532. </li>
  1533.  
  1534. <li>
  1535.  
  1536. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="https://67.media.tumblr.com/08736850f35d374e15218e60a33b40c1/tumblr_inline_ofx29fxbkY1uxt42x_540.png" /></p>
  1537. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1538. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE 001</blockquote>
  1539. <p>Post Season 2 & Canon Divergent. Erica did not die whilst being held captive by the alpha pack. She was rescued along with Boyd & Cora. She has been living in Beacon Hills ever since.</p>
  1540. </div>
  1541.  
  1542. <hr></hr>
  1543. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="https://67.media.tumblr.com/874a95faa15ec38cf9ffccb019f25ddf/tumblr_inline_ofx29fm7uQ1uxt42x_540.png" /></p>
  1544. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1545. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE 002</blockquote>
  1546. <p>Post Season 2 & Canon Divergent. Erica did not die whilst being held captive by the alpha pack. Crazed & almost on the verge of turning feral from being deprived of moon light for almost three months, she ended up pitching a fight with one of the alphas, killing him in the process & taking his alpha power. Soon after, she was rescued along with Boyd & Cora. She has been living in Beacon Hills ever since. </p>
  1547. </div>
  1548.  
  1549.  
  1550. </li>
  1551.  
  1552. <li>
  1553.  
  1554. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  1555.  
  1556. </li>
  1557.  
  1558. <li>
  1559.  
  1560. TO BE ADDED!
  1561.  
  1562. </li>
  1563.  
  1564. </ul> <!– important. don’t delete –>
  1565. </div></div></div></div></div></div></div></div></div></div></div></div>
  1566.  
  1567. <div id="box8" class="popup_block">
  1568. <div id="popheader">RENESMEE CULLEN</div>
  1569.  
  1570. <div id="headerbar">
  1571. <ul id="tabs">
  1572. <li class="active">ABOUT</li>
  1573. <li>VERSES</li>
  1574. <li>LINKS</li>
  1575. <li>EXCLUSIVES & MAINS</li>
  1576. </ul></div>
  1577. <div id="tabbar">
  1578. <ul id="tab">
  1579.  
  1580. <li class="active">
  1581.  
  1582. <div align="center"><img src="https://66.media.tumblr.com/64a7bc548df9276d539ff2b01de08f56/tumblr_inline_ofxawvdJNx1uxt42x_540.png"></div>
  1583.  
  1584. <div id="text">
  1585. <h4>CANON</h4>
  1586. Renesmee's canon bio can be found <a href="http://twilightsaga.wikia.com/wiki/Renesmee_Cullen">HERE</a>!
  1587. <h4>MY INTERPRETATION</h4>
  1588. My portrayal of Renesmee is mostly canon - compliant. Only difference is that Jacob never imprinted on her.
  1589. <h4>MY HEADCANONS</h4>
  1590. TO BE ADDED!
  1591. </div>
  1592. </li>
  1593.  
  1594. <li>
  1595.  
  1596. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  1597. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1598. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE 001</blockquote>
  1599. <p>Post Breaking Dawn verse & mostly canon - compliant. Only difference is that Jacob never imprinted on her. Renesmee is 7 years old & physically eighteen years old & an fully matured adult.</p>
  1600. </div>
  1601.  
  1602. <hr></hr>
  1603.  
  1604.  
  1605. </li>
  1606.  
  1607. <li>
  1608.  
  1609. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  1610.  
  1611. </li>
  1612.  
  1613. <li>
  1614.  
  1615. TO BE ADDED!
  1616.  
  1617. </li>
  1618.  
  1619. </ul> <!– important. don’t delete –>
  1620. </div></div></div></div></div></div></div></div></div></div></div></div>
  1621.  
  1622.  
  1623. <div id="box9" class="popup_block">
  1624. <div id="popheader">hayden romero</div>
  1625.  
  1626. <div id="headerbar">
  1627. <ul id="tabs">
  1628. <li class="active">ABOUT</li>
  1629. <li>VERSES</li>
  1630. <li>LINKS</li>
  1631. <li>EXCLUSIVES & MAINS</li>
  1632. </ul></div>
  1633. <div id="tabbar">
  1634. <ul id="tab">
  1635.  
  1636. <li class="active">
  1637.  
  1638. <div align="center"><img src="https://66.media.tumblr.com/e26cfbd3222b1f66a335246513456d78/tumblr_inline_ofxdcklz631uxt42x_540.png"></div>
  1639.  
  1640. <div id="text">
  1641. <h4>CANON</h4>
  1642. Hayden's canon bio can be found <a href="http://teenwolf.wikia.com/wiki/Hayden">HERE</a>!
  1643. <h4>MY INTERPRETATION</h4>
  1644. My portrayal of Hayden is canon - compliant.
  1645. <h4>MY HEADCANONS</h4>
  1646. TO BE ADDED!
  1647. </div>
  1648.  
  1649. </li>
  1650.  
  1651. <li>
  1652.  
  1653. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="https://65.media.tumblr.com/b9368ba361a2dd8a0785da563d45bd73/tumblr_inline_ofxdcd0pGC1uxt42x_540.png" /></p>
  1654. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1655. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE 001</blockquote>
  1656. <p>Canon Compliant Verse.</p>
  1657.  
  1658. </div>
  1659.  
  1660. <hr></hr>
  1661.  
  1662. </li>
  1663.  
  1664. <li>
  1665.  
  1666. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  1667.  
  1668. </li>
  1669.  
  1670. <li>
  1671.  
  1672. TO BE ADDED!
  1673.  
  1674. </li>
  1675.  
  1676. </ul> <!– important. don’t delete –>
  1677. </div></div></div></div></div></div></div></div></div></div></div></div>
  1678.  
  1679.  
  1680.  
  1681.  
  1682.  
  1683. <div id="box10" class="popup_block">
  1684. <div id="popheader">CAROLINE FORBES</div>
  1685.  
  1686. <div id="headerbar">
  1687. <ul id="tabs">
  1688. <li class="active">ABOUT</li>
  1689. <li>VERSES</li>
  1690. <li>LINKS</li>
  1691. <li>EXCLUSIVES & MAINS</li>
  1692. </ul></div>
  1693. <div id="tabbar">
  1694. <ul id="tab">
  1695.  
  1696. <li class="active">
  1697.  
  1698. <div align="center"><img src="https://67.media.tumblr.com/920a6c0acd00e437c54be406364bd574/tumblr_inline_og8dfjZk8N1uxt42x_540.png"></div>
  1699.  
  1700. <div id="text">
  1701. <h4>CANON</h4>
  1702. Caroline's canon bio can be found <a href="http://vampirediaries.wikia.com/wiki/Caroline_Forbes">HERE</a>!
  1703. <h4>MY INTERPRETATION</h4>
  1704. My portrayal of Caroline is canon - compliant, but i do have a few canon divergent verses. Check them out in the 'Verses' tab!
  1705. <h4>MY HEADCANONS</h4>
  1706. TO BE ADDED!
  1707. </div>
  1708.  
  1709.  
  1710. </li>
  1711.  
  1712. <li>
  1713.  
  1714. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="https://66.media.tumblr.com/15f48f4eabaac9729b04d1112861d80e/tumblr_inline_og8e3reuSy1uxt42x_540.png" /></p>
  1715. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1716. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE 001</blockquote>
  1717. <p>Canon Compliant Verse. Disclaimer : Mun is only caught upto S7E16!</p>
  1718. </div>
  1719.  
  1720. <hr></hr>
  1721. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="https://67.media.tumblr.com/988a8e735638b703b6ec6c0e695e4c2e/tumblr_inline_og8dfujT5Y1uxt42x_540.png" /></p>
  1722. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1723. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE 002</blockquote>
  1724. <p>Canon Divergent Verse. Canon Compliant up until S2E1. Caroline was never turned by Katherine & is human.</p>
  1725. </div>
  1726.  
  1727. <hr></hr>
  1728. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="https://67.media.tumblr.com/e46c3b4100975abac8f2edf657c8205c/tumblr_inline_og8dfsgii31uxt42x_540.png" /></p>
  1729. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1730. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE 003</blockquote>
  1731. <p>Canon Divergent Verse. Canon Compliant up until S6E15. Caroline never returns to whittemore after turning off her humanity switch.</p>
  1732. </div>
  1733.  
  1734. </li>
  1735.  
  1736. <li>
  1737.  
  1738. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  1739.  
  1740. </li>
  1741.  
  1742. <li>
  1743.  
  1744. TO BE ADDED!
  1745.  
  1746. </li>
  1747.  
  1748. </ul> <!– important. don’t delete –>
  1749. </div></div></div></div></div></div></div></div></div></div></div></div>
  1750.  
  1751. <div id="box11" class="popup_block">
  1752. <div id="popheader">MALIA TATE</div>
  1753.  
  1754. <div id="headerbar">
  1755. <ul id="tabs">
  1756. <li class="active">ABOUT</li>
  1757. <li>VERSES</li>
  1758. <li>LINKS</li>
  1759. <li>EXCLUSIVES & MAINS</li>
  1760. </ul></div>
  1761. <div id="tabbar">
  1762. <ul id="tab">
  1763.  
  1764. <li class="active">
  1765.  
  1766. <div align="center"><img src="https://66.media.tumblr.com/9de705553892ee8c99a83f67952a868e/tumblr_inline_og8frypKU61uxt42x_540.png"></div>
  1767.  
  1768. <div id="text">
  1769. <h4>CANON</h4>
  1770. Malia's canon bio can be found <a href="http://teenwolf.wikia.com/wiki/Malia_Tate">HERE</a>!
  1771. <h4>MY INTERPRETATION</h4>
  1772. My portrayal of Malia is canon - compliant!
  1773. <h4>MY HEADCANONS</h4>
  1774. TO BE ADDED!
  1775. </div>
  1776.  
  1777.  
  1778. </li>
  1779.  
  1780. <li>
  1781.  
  1782. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  1783. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1784. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  1785. <p>––</p>
  1786. <p>TBA.</p>
  1787. </div>
  1788.  
  1789. <hr></hr>
  1790. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  1791. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1792. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  1793. <p>––</p>
  1794. <p>TBA.</p>
  1795. </div>
  1796.  
  1797.  
  1798. </li>
  1799.  
  1800. <li>
  1801.  
  1802. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  1803.  
  1804. </li>
  1805.  
  1806. <li>
  1807.  
  1808. TO BE ADDED!
  1809.  
  1810. </li>
  1811.  
  1812. </ul> <!– important. don’t delete –>
  1813. </div></div></div></div></div></div></div></div></div></div></div></div>
  1814.  
  1815.  
  1816. <div id="box12" class="popup_block">
  1817. <div id="popheader">HERMIONE GRANGER</div>
  1818.  
  1819. <div id="headerbar">
  1820. <ul id="tabs">
  1821. <li class="active">ABOUT</li>
  1822. <li>VERSES</li>
  1823. <li>LINKS</li>
  1824. <li>EXCLUSIVES & MAINS</li>
  1825. </ul></div>
  1826. <div id="tabbar">
  1827. <ul id="tab">
  1828.  
  1829. <li class="active">
  1830.  
  1831. <div align="center"><img src="https://65.media.tumblr.com/e701eea2abe8a36adbede0274f318e6d/tumblr_inline_oh5dcnNMsM1uxt42x_540.png"></div>
  1832.  
  1833. <div id="text">
  1834. <h4>CANON</h4>
  1835. hermione's canon bio can be found <a href="http://harrypotter.wikia.com/wiki/Hermione_Granger">HERE</a>!
  1836. <h4>MY INTERPRETATION</h4>
  1837. My portrayal of hermione is mostly canon - compliant, except the fact that she's not white but a proud black woman! Feel free to fuck off of my blog if you have a problem with this.
  1838. <h4>MY HEADCANONS</h4>
  1839. TO BE ADDED!
  1840. </div>
  1841.  
  1842. </li>
  1843.  
  1844. <li>
  1845.  
  1846. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  1847. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1848. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  1849. <p>––</p>
  1850. <p>TBA.</p>
  1851. </div>
  1852.  
  1853. <hr></hr>
  1854. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  1855. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1856. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  1857. <p>––</p>
  1858. <p>TBA.</p>
  1859. </div>
  1860.  
  1861.  
  1862. </li>
  1863.  
  1864. <li>
  1865.  
  1866. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  1867.  
  1868. </li>
  1869.  
  1870. <li>
  1871.  
  1872. TO BE ADDED!
  1873.  
  1874. </li>
  1875.  
  1876. </ul> <!– important. don’t delete –>
  1877. </div></div></div></div></div></div></div></div></div></div></div></div>
  1878.  
  1879.  
  1880.  
  1881. <div id="box13" class="popup_block">
  1882. <div id="popheader">BUTTERCUP UTONIUM</div>
  1883.  
  1884. <div id="headerbar">
  1885. <ul id="tabs">
  1886. <li class="active">ABOUT</li>
  1887. <li>VERSES</li>
  1888. <li>LINKS</li>
  1889. <li>EXCLUSIVES & MAINS</li>
  1890. </ul></div>
  1891. <div id="tabbar">
  1892. <ul id="tab">
  1893.  
  1894. <li class="active">
  1895.  
  1896. <div align="center"><img src="http://static.tumblr.com/dvropz2/PZBo8734m/212874_1405831624073_full.png" style="width: 70px; padding-top: 20px; padding-bottom: 20px; padding-right: 10px; padding-left: 10px;"><img src="http://static.tumblr.com/dvropz2/iyro8734r/the-return-katherine-pierce-and-elena-gilbert-15527626-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px; padding-right: 10px;"><img src="http://static.tumblr.com/dvropz2/6XGo8734v/katherine-katherine-pierce-15599734-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px;"></div>
  1897.  
  1898. <div id="text">
  1899. Four loko tattooed small batch etsy, lumbersexual vinyl photo booth pickled paleo everyday carry fashion axe narwhal. Neutra four dollar toast cliche selfies, wolf +1 roof party. Seitan normcore fap dreamcatcher irony yr, chicharrones fixie heirloom pug put a bird on it sriracha. Meh 90's ugh paleo, neutra street art tilde swag stumptown schlitz mumblecore. Yr pabst kitsch meditation shabby chic lomo. Viral literally mlkshk direct trade helvetica. Tacos literally lumbersexual, listicle tumblr kogi viral forage.
  1900. </div>
  1901.  
  1902. </li>
  1903.  
  1904. <li>
  1905.  
  1906. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  1907. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1908. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  1909. <p>––</p>
  1910. <p>TBA.</p>
  1911. </div>
  1912.  
  1913. <hr></hr>
  1914. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  1915. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1916. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  1917. <p>––</p>
  1918. <p>TBA.</p>
  1919. </div>
  1920.  
  1921.  
  1922. </li>
  1923.  
  1924. <li>
  1925.  
  1926. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  1927.  
  1928. </li>
  1929.  
  1930. <li>
  1931.  
  1932. TO BE ADDED!
  1933.  
  1934. </li>
  1935.  
  1936. </ul> <!– important. don’t delete –>
  1937. </div></div></div></div></div></div></div></div></div></div></div></div>
  1938.  
  1939.  
  1940.  
  1941.  
  1942. <div id="box14" class="popup_block">
  1943. <div id="popheader">ISABELLE LIGHTWOOD</div>
  1944.  
  1945. <div id="headerbar">
  1946. <ul id="tabs">
  1947. <li class="active">ABOUT</li>
  1948. <li>VERSES</li>
  1949. <li>LINKS</li>
  1950. <li>EXCLUSIVES & MAINS</li>
  1951. </ul></div>
  1952. <div id="tabbar">
  1953. <ul id="tab">
  1954.  
  1955. <li class="active">
  1956.  
  1957. <div align="center"><img src="http://static.tumblr.com/dvropz2/PZBo8734m/212874_1405831624073_full.png" style="width: 70px; padding-top: 20px; padding-bottom: 20px; padding-right: 10px; padding-left: 10px;"><img src="http://static.tumblr.com/dvropz2/iyro8734r/the-return-katherine-pierce-and-elena-gilbert-15527626-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px; padding-right: 10px;"><img src="http://static.tumblr.com/dvropz2/6XGo8734v/katherine-katherine-pierce-15599734-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px;"></div>
  1958.  
  1959. <div id="text">
  1960. Four loko tattooed small batch etsy, lumbersexual vinyl photo booth pickled paleo everyday carry fashion axe narwhal. Neutra four dollar toast cliche selfies, wolf +1 roof party. Seitan normcore fap dreamcatcher irony yr, chicharrones fixie heirloom pug put a bird on it sriracha. Meh 90's ugh paleo, neutra street art tilde swag stumptown schlitz mumblecore. Yr pabst kitsch meditation shabby chic lomo. Viral literally mlkshk direct trade helvetica. Tacos literally lumbersexual, listicle tumblr kogi viral forage.
  1961. </div>
  1962.  
  1963. </li>
  1964.  
  1965.  
  1966. <li>
  1967.  
  1968. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  1969. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1970. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  1971. <p>––</p>
  1972. <p>TBA.</p>
  1973. </div>
  1974.  
  1975. <hr></hr>
  1976. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  1977. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  1978. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  1979. <p>––</p>
  1980. <p>TBA.</p>
  1981. </div>
  1982.  
  1983.  
  1984. </li>
  1985.  
  1986. <li>
  1987.  
  1988. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  1989.  
  1990. </li>
  1991.  
  1992. <li>
  1993.  
  1994. TO BE ADDED!
  1995.  
  1996. </li>
  1997.  
  1998. </ul> <!– important. don’t delete –>
  1999. </div></div></div></div></div></div></div></div></div></div></div></div>
  2000.  
  2001. <div id="box15" class="popup_block">
  2002. <div id="popheader">NAME</div>
  2003.  
  2004. <div id="headerbar">
  2005. <ul id="tabs">
  2006. <li class="active">ABOUT</li>
  2007. <li>STATS</li>
  2008. <li>VERSES</li>
  2009. <li>HEAD CANONS</li>
  2010. <li>LINKS</li>
  2011. <li>EXCLUSIVES & MAINS</li>
  2012. </ul></div>
  2013. <div id="tabbar">
  2014. <ul id="tab">
  2015.  
  2016. <li class="active">
  2017.  
  2018. <img src="http://static.tumblr.com/zq6glzh/IfQo9wn81/hayley-and-hope-mikaelson.png"/>
  2019.  
  2020. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;on the unfortunate eve of 18 july, 1994, lily brown gave birth to a bouncing baby boy. swathed in blue silk with tufts of fuzzy brown locks testing atop his crown, he was the most gorgeous baby she had ever laid her eyes upon. with a smile on her lips & an adoring look in her tired eyes, she named him jesse. she was murdered in cold blood by the father of her own child only moments later, struck in the heart by a poisoned dagger. ripped from his mother’s now lifeless arms, jesse bawled his eyes out, instinctively struggling to get out of the killers embrace but to no avail. joshua martin had an iron grip on his newborn son as he conjured up a small flame in the palm of his hand, lighting his late girlfriend’s house on fire. lily’s corpse turned to ash as joshua disappeared into the night with her first child. &nbsp;&nbsp;&nbsp;&nbsp;<a href="" title="jesse's dad's basically a power hungry asshole has this insane idea of building his own powerful coven consisting of people that share dna with him. so he cooked up this whole plan about finding powerful ass witches, seducing and impregnating them then killing them and taking away the baby. he had already done this once before jesse was born and had a five years old daughter named jacquelin. and plans on doing it again ">HOVER</a>
  2021. <img src="http://static.tumblr.com/zq6glzh/tmRo9wh79/download-white.png"/>
  2022. <img src="http://static.tumblr.com/zq6glzh/yDVo9y04u/240_f_66501009_m1sy5hjcp04o6xptnajabhncbcsdpukc.png"/>
  2023. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;jesse was two when his father brought luca home, four when he brought home lavender. he was six when his father realised that lavender didn't have a spot of magic in her. she was human, completely and vulnerably human and of no use to him. it happened sometimes, you see, two witches just cancelled each other out. jesse didn't mind, nor did jackie or luca but joshua didn't take this news well. from that day forward, lavender became his personal punching bag cum servant. &nbsp;&nbsp;&nbsp;&nbsp;<a href="" title="joshua martin wasn't really affectionate or fatherly when it came to his children, treating his children like weapons to be sharpened but he became a downright abusive when it came to lavender from that day. we're talking regular physical and mental abuse here, stuff bad enough that no living beigh should suffer through muchless a defenceless two year old ugh">HOVER</a>
  2024. <img src="http://static.tumblr.com/zq6glzh/tmRo9wh79/download-white.png"/>
  2025. <img src="http://static.tumblr.com/zq6glzh/yX3o9y0uk/521836276_2e1c934cc4_o.png"/>
  2026. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;24 may,2005, it was a day that was going to haunt jesse for the rest of his life. he scrambled off of the bed, racing downstairs as fast as his little feet could carry him. it was the day he woke up to his little sister screaming her lungs off. their father was trying to choke her to death in the living room. he lunged towards the man, fist balled only to be flung aside. that was it, that was when jesse reached his breaking point. anger surged through his blood like adrenaline spiked blood, flesh heating to a temperature that's humanly impossible. joshua dropped lavender as his blood started to boil, his body combusting only moments later as he burst into flames. Jackie's the one who pulled both jesse & lavender out, lucas thankfully already out of the house. it seemed that jesse had managed to somehow subconciously use his powers to protect both of them from the flames.
  2027. <img src="http://static.tumblr.com/zq6glzh/tmRo9wh79/download-white.png"/>
  2028. <img src="http://static.tumblr.com/zq6glzh/HZjo9y2d9/ih9xh6aozw.png"/>
  2029. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;joshua's didn't only grant them freedom, it also lifted the cloaking spells that he had cast on each one of them after their birth. scared and cold, all four of them sat huddled under a blanket at the sheriff's station, when a tall, willowy woman came marching inside. her name was astrid, & she was jackie's maternal grandmother. astrid had been searching for her since the day she had been born, a task made impossible by joshua's powerful cloaking spell. relief flooded her features as she reached the lot of them, tears of happiness streaming down her bony cheekbones. she had come for jackie but one thing was for sure, she was leaving with all four of them. she was going to give them the home they deserved, full of love & acceptance.
  2030.  
  2031.  
  2032. </li>
  2033.  
  2034. <li>
  2035.  
  2036. <div id="popheader">GENERAL</div>
  2037. <div id="text">
  2038. <blockquote><p><b>FULL NAME</b>: &nbsp;Jesse Black</p>
  2039. <p><b>NICKNAMES</b>: Jess, Jazz.</p>
  2040. <p><b>SPECIES</b>: &nbsp;Witch.</p>
  2041. <p><b>GENDER</b>: Male.</p>
  2042. <p><b>PRONOUNS</b> : Him/He.</p>
  2043. <p><b>BIRTHDAY</b> : TBA</p>
  2044. <p><b>STAR SIGN</b> : TBA</p>
  2045. <p><b>PLACE OF BIRTH</b> : TBA.</p>
  2046. <p><b>RESIDENCE</b>&nbsp;: &nbsp;TBA</p>
  2047. <p><b>NATIONALITY</b>&nbsp;: &nbsp;American.</p>
  2048. <p><b>ORIENTATION</b> : Homosexual.</p>
  2049. <p><b>DOMINANT HAND</b> : Right.</p>
  2050. <p><b>ACCENT</b> : American.</p>
  2051. <p><b>OCCUPATION</b> : TBA</p></blockquote></div>
  2052.  
  2053. <div id="popheader">APPEARANCE</div>
  2054. <div id="text">
  2055. <blockquote><p><b>FACE CLAIM</b> : NICO MIRALLEGRO.</p>
  2056. <p><b>EYE COLOR</b> : hazel.</p>
  2057. <p><b>HAIR COLOR/STYLE</b> : dark brown / naturally wavy .</p>
  2058. <p><b>HEIGHT</b> : TBA</p>
  2059. <p><b>WEIGHT</b> : TBA</p>
  2060. <p><b>BODY BUILD</b> : muscular.</p>
  2061. <p><b>SCARS/BIRTHMARKS</b> : TBA.</p>
  2062. <p><b>TATOOS</b> : TBA.</p>
  2063. <p><b>TEETH</b> : white, straight.</p>
  2064. <p><b>PIERCINGS</b> : Left earlobe.</p></blockquote></div>
  2065.  
  2066. <div id="popheader">FAMILIARS</div>
  2067. <div id="text">
  2068. <blockquote><p><b>BIOLOGICAL PARENTS</b> : Joshua Martin (deceased ) , Lily Brown ( deceased ) . </p>
  2069. <p><b>HALF SIBLINGS</b> : TBA</p>
  2070. <p><b>ADOPTIVE GRANDMOTHER</b> : ASTRID BLACK (alive)</p></blockquote>
  2071. </div>
  2072.  
  2073. <div id="popheader">powers</div>
  2074. <div id="text">
  2075. <p><b>PYROKINESIS</b> : Jesse possesses the psychic ability of creating, shaping, absorbing & controling fire with his mind. It's his strongest attribute. He also possesses the abilty to negate fire, which means that he can cancel out or nullify fire & any fire-using attacks, ignoring their effects. This also means that fire has no effect on his body & can't harm him in any way. He can also extend this ability to other individuals for short amount of time through touch ( he has only done it without touch once when he was eight, but hasn't been able to do it since.), protecting them. </p>
  2076. <p><b>SPELL-CASTING</b> : He can cast an array of spells, ranging from easy to diffiicult, traditional to even spells of his own invention. Like the rest of his siblings, he is in the process of constructing his own grimoire.
  2077. ( MORE TO BE ADDED )
  2078.  
  2079. <h2>PERSONALITY ANALYSIS</h2>
  2080.  
  2081. <div id="popheader">PERSONALITY TYPE━ ENTJ</div>
  2082. <div id="text">
  2083. <blockquote>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ENTJs are natural born leaders & have a drive for leadership, which is well-served by their quickness to grasp complexities, their ability to absorb a large amount of impersonal information, & their quick & decisive judgments. They are "take charge" people. They dislike to see mistakes repeated, & have no patience with inefficiency & may become quite harsh when their patience is tried in these respects. They are very forceful, decisive individuals. They make decisions quickly, & are quick to verbalize their opinions & decisions to the rest of the world. Although ENTJs are not naturally tuned into other people's feelings, these individuals frequently have very strong sentimental streaks & often they will try to hide it from general knowledge, believing the feelings to be a weakness. They are assertive, innovative, long-range thinkers with an excellent ability to translate theories & possibilities into solid plans of action. They are usually tremendously forceful personalities, & have the tools to accomplish whatever goals they set out for.</blockquote>
  2084. </div>
  2085.  
  2086. <div id="popheader">ELEMENT ━ FIRE</div>
  2087. <div id="text">
  2088. <blockquote>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Fire people are impassioned, they are "on fire," whether with ideas, goals, or causes.They are natural leaders, as they convey their passions with an intensity that compels others to pay attention. They go by their gut & once they are sure of something, they don't waver. A Fire person "lights up a room." & has a "burning" presence. Of the four elements, Fire is the most interesting & exciting to be around. Arguably, they are also the most dynamic sexually, as it is their nature to be lustful & desirous. They are impassioned & devoted lovers, & may tend toward flamboyant romantic gestures sometimes. They can be hot-tempered, prone to rage & maybe even violence in some situations. Their utter faith in their gut instinct might make them self-righteous, barreling past the considerations & concerns of others. With their knack for passionate focus, they runs the risk of becoming obsessive. Fire people are also very impulsive.</blockquote>
  2089. </div>
  2090.  
  2091. <div id="popheader">TEMPERAMENT ━ CHOLERIC</div>
  2092. <div id="text">
  2093. <blockquote>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Someone with <b>Choleric temperament</b> is fundamentally ambitious and leader-like & are very savvy, analytical, & logical. They have a lot of aggression, energy, &/or passion, & try to instill it in others. Dominant in personality Cholerics desire control. They are decisive, must correct wrongs when they see them, & compulsively need to change things. They systematize everything, are all about independence, & do not do well in a subordinate position. They are skeptical & do not trust easy; they need to investigate the facts on their own, relying on their own logic & reasoning. If they are absorbed in something, do not even bother trying to get their attention. Negatively, they are bossy, domineering, impatient, can’t relax, quick tempered, easily angered, unsympathetic, enjoy arguments, too impetuous, & can dominate people of other tempera-ments, especially the Phlegmatic types. They like to be in charge of everything. Extremely practical and straightforward, choleric people aren’t necessary very good companions or particularly social. They donot have many friends, though they need them. They dislike small talk & enjoy deep and meaningful conversations. They would rather be alone than in company of shallow, superficial people.</blockquote>
  2094. </div>
  2095.  
  2096. <div id="popheader">ALIGNMENT ━ CHAOTIC GOOD</div>
  2097. <div id="text">
  2098. <blockquote>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Commonly referred to as <B>“The Rebel,”</B> Chaotic Goods let their conscience be their guide. They follow their own moral compass that may conflict with society, but CGs don’t care for rules & regulations. These characters are ultimately benevolent & have kind hearts. They are usually fighting for a cause that is nearly impossible to win. They hate it when people try to intimidate others & tell others what to do.</blockquote>
  2099. </div>
  2100.  
  2101.  
  2102. </li>
  2103.  
  2104.  
  2105. <li>
  2106.  
  2107. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2108. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2109. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2110. <p>––</p>
  2111. <p>TBA.</p>
  2112. </div>
  2113.  
  2114. <hr></hr>
  2115. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2116. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2117. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2118. <p>––</p>
  2119. <p>TBA.</p>
  2120. </div>
  2121.  
  2122.  
  2123. </li>
  2124.  
  2125. <li>
  2126.  
  2127. TO BE ADDED!
  2128.  
  2129. </li>
  2130.  
  2131.  
  2132. <li>
  2133.  
  2134. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  2135.  
  2136. </li>
  2137.  
  2138. <li>
  2139.  
  2140. TO BE ADDED!
  2141.  
  2142. </li>
  2143.  
  2144. </ul> <!– important. don’t delete –>
  2145. </div></div></div></div></div></div></div></div></div></div></div></div>
  2146.  
  2147. <div id="box16" class="popup_block">
  2148. <div id="popheader">SAMANTHA BROWN</div>
  2149.  
  2150. <div id="headerbar">
  2151. <ul id="tabs">
  2152. <li class="active">ABOUT</li>
  2153. <li>STATS</li>
  2154. <li>VERSES</li>
  2155. <li>HEAD CANONS</li>
  2156. <li>LINKS</li>
  2157. <li>EXCLUSIVES & MAINS</li>
  2158. </ul></div>
  2159. <div id="tabbar">
  2160. <ul id="tab">
  2161.  
  2162. <li class="active">
  2163.  
  2164. <div align="center"><img src="http://static.tumblr.com/dvropz2/PZBo8734m/212874_1405831624073_full.png" style="width: 70px; padding-top: 20px; padding-bottom: 20px; padding-right: 10px; padding-left: 10px;"><img src="http://static.tumblr.com/dvropz2/iyro8734r/the-return-katherine-pierce-and-elena-gilbert-15527626-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px; padding-right: 10px;"><img src="http://static.tumblr.com/dvropz2/6XGo8734v/katherine-katherine-pierce-15599734-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px;"></div>
  2165.  
  2166. <div id="text">
  2167. Four loko tattooed small batch etsy, lumbersexual vinyl photo booth pickled paleo everyday carry fashion axe narwhal. Neutra four dollar toast cliche selfies, wolf +1 roof party. Seitan normcore fap dreamcatcher irony yr, chicharrones fixie heirloom pug put a bird on it sriracha. Meh 90's ugh paleo, neutra street art tilde swag stumptown schlitz mumblecore. Yr pabst kitsch meditation shabby chic lomo. Viral literally mlkshk direct trade helvetica. Tacos literally lumbersexual, listicle tumblr kogi viral forage.
  2168. </div>
  2169.  
  2170. </li>
  2171.  
  2172. <li>
  2173.  
  2174. TO BE ADDED!
  2175.  
  2176. </li>
  2177.  
  2178.  
  2179. <li>
  2180.  
  2181. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2182. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2183. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2184. <p>––</p>
  2185. <p>TBA.</p>
  2186. </div>
  2187.  
  2188. <hr></hr>
  2189. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2190. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2191. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2192. <p>––</p>
  2193. <p>TBA.</p>
  2194. </div>
  2195.  
  2196.  
  2197. </li>
  2198.  
  2199. <li>
  2200.  
  2201. TO BE ADDED!
  2202.  
  2203. </li>
  2204.  
  2205.  
  2206. <li>
  2207.  
  2208. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  2209.  
  2210. </li>
  2211.  
  2212. <li>
  2213.  
  2214. TO BE ADDED!
  2215.  
  2216. </li>
  2217.  
  2218. </ul> <!– important. don’t delete –>
  2219. </div></div></div></div></div></div></div></div></div></div></div></div>
  2220.  
  2221. <div id="box17" class="popup_block">
  2222. <div id="popheader">LUCAS BLACK</div>
  2223. <div id="headerbar">
  2224. <ul id="tabs">
  2225. <li class="active">ABOUT</li>
  2226. <li>STATS</li>
  2227. <li>VERSES</li>
  2228. <li>HEAD CANONS</li>
  2229. <li>LINKS</li>
  2230. <li>EXCLUSIVES & MAINS</li>
  2231. </ul></div>
  2232. <div id="tabbar">
  2233. <ul id="tab">
  2234.  
  2235. <li class="active">
  2236.  
  2237. <div align="center"><img src="http://static.tumblr.com/dvropz2/PZBo8734m/212874_1405831624073_full.png" style="width: 70px; padding-top: 20px; padding-bottom: 20px; padding-right: 10px; padding-left: 10px;"><img src="http://static.tumblr.com/dvropz2/iyro8734r/the-return-katherine-pierce-and-elena-gilbert-15527626-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px; padding-right: 10px;"><img src="http://static.tumblr.com/dvropz2/6XGo8734v/katherine-katherine-pierce-15599734-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px;"></div>
  2238.  
  2239. <div id="text">
  2240. Four loko tattooed small batch etsy, lumbersexual vinyl photo booth pickled paleo everyday carry fashion axe narwhal. Neutra four dollar toast cliche selfies, wolf +1 roof party. Seitan normcore fap dreamcatcher irony yr, chicharrones fixie heirloom pug put a bird on it sriracha. Meh 90's ugh paleo, neutra street art tilde swag stumptown schlitz mumblecore. Yr pabst kitsch meditation shabby chic lomo. Viral literally mlkshk direct trade helvetica. Tacos literally lumbersexual, listicle tumblr kogi viral forage.
  2241. </div>
  2242.  
  2243. </li>
  2244.  
  2245. <li>
  2246.  
  2247. TO BE ADDED!
  2248.  
  2249. </li>
  2250.  
  2251.  
  2252. <li>
  2253.  
  2254. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2255. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2256. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2257. <p>––</p>
  2258. <p>TBA.</p>
  2259. </div>
  2260.  
  2261. <hr></hr>
  2262. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2263. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2264. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2265. <p>––</p>
  2266. <p>TBA.</p>
  2267. </div>
  2268.  
  2269.  
  2270. </li>
  2271.  
  2272. <li>
  2273.  
  2274. TO BE ADDED!
  2275.  
  2276. </li>
  2277.  
  2278.  
  2279. <li>
  2280.  
  2281. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  2282.  
  2283. </li>
  2284.  
  2285. <li>
  2286.  
  2287. TO BE ADDED!
  2288.  
  2289. </li>
  2290.  
  2291. </ul> <!– important. don’t delete –>
  2292. </div></div></div></div></div></div></div></div></div></div></div></div>
  2293.  
  2294. <div id="box18" class="popup_block">
  2295. <div id="popheader">ROSALIE ROBERTS</div>
  2296.  
  2297. <div id="headerbar">
  2298. <ul id="tabs">
  2299. <li class="active">ABOUT</li>
  2300. <li>STATS</li>
  2301. <li>VERSES</li>
  2302. <li>HEAD CANONS</li>
  2303. <li>LINKS</li>
  2304. <li>EXCLUSIVES & MAINS</li>
  2305. </ul></div>
  2306. <div id="tabbar">
  2307. <ul id="tab">
  2308.  
  2309. <li class="active">
  2310.  
  2311.  
  2312. <div id="text">
  2313. TO BE ADDED, CHECK OUT STATS IN THE MEAN TIME !
  2314. </div>
  2315.  
  2316. </li>
  2317.  
  2318. <li>
  2319. <div id="popheader">GENERAL</div>
  2320. <div id="text">
  2321. <p><strong>FULL NAME</strong>: &nbsp;Rosalie Roberts</p>
  2322. <p><strong>NICKNAMES</strong>: Rose, Rosa.</p>
  2323. <p><strong>SPECIES</strong>: &nbsp;Demigod.</p>
  2324. <p><strong>GENDER</strong>: Female.</p>
  2325. <p><strong>PRONOUNS</strong> : She/Her.</p>
  2326. <p><strong>BIRTHDAY</strong> : TBA</p>
  2327. <p><strong>STAR SIGN</strong> : TBA</p>
  2328. <p><strong>PLACE OF BIRTH</strong> : New York City.</p>
  2329. <p><strong>RESIDENCE</strong>&nbsp;: &nbsp;New York City</p>
  2330. <p><strong>NATIONALITY</strong>&nbsp;: &nbsp;American.</p>
  2331. <p><strong>ORIENTATION</strong> : Bisexual, leaning more towards boys.</p>
  2332. <p><strong>DOMINANT HAND</strong> : Right.</p>
  2333. <p><strong>ACCENT</strong> : American.</p>
  2334. <p><strong>OCCUPATION</strong> : Super Modal &amp; is in the process of opening her own clothing line.</p>
  2335.  
  2336. <div id="popheader">PHYSIQUE</div>
  2337. <div id="text">
  2338. <p><strong>FACE CLAIM</strong> : Holland Roden.</p>
  2339. <p><strong>EYE COLOR</strong> : Olive Green.</p>
  2340. <p><strong>HAIR COLOR/STYLE</strong> : auburn / naturally curly .</p>
  2341. <p><strong>HEIGHT</strong> : 5&prime; 3&Prime;</p>
  2342. <p><strong>BODY BUILD</strong> : curvy.</p>
  2343. <p><strong>SCARS/BIRTHMARKS</strong> : TBA.</p>
  2344. <p><strong>TATOOS</strong> : TBA.</p>
  2345. <p><strong>TEETH</strong> : white, straight.</p>
  2346. <p><strong>PIERCINGS</strong> : Both earlobes.</p>
  2347. </div>
  2348. <div id="popheader">FAMILIARS</div>
  2349. <div id="text">
  2350. <p><strong>GODLY PARENTS</strong> : Aphrodite</p>
  2351. <p><strong>GODLY PARENTS</strong> : Victor Roberts</p>
  2352. <p><strong>HALF SIBLINGS</strong> : TBA</p>
  2353. </div>
  2354.  
  2355.  
  2356. <div id="popheader">POWERS & SKILLS</div>
  2357. <div id="text">
  2358. <p>♡ rosalie possesses the ability to charm speak , which means that she can influence others with the strength of her voice / words .
  2359. <p>♡ her choice of weapon is either a knife of or a small sword & unlike most aphrodite’s children , she is actually very good at hand-to-hand combat & fighting with knives / small swords .
  2360. <p>♡ other than fast reflexes & enhanced strength , she also has greater clarity & sharper focus .
  2361. <p>♡ she also possesses the ability of manipulating emotions, especially love , but detests using it .
  2362. <p>♡ like other aphrodite’s kids she has the same affinity for french , the language of love , as all demigods do for greek or latin.
  2363. <p>♡ as her mother also possessed the power of inducing harvest of crops, rosalie has also inherited somewhat of a green thumb . nothing major , just plants have a habit of flourishing better with her around , especially rose bushes .
  2364. <p>♡ she also possesses an affinity for apothecary .
  2365. she is a phenomenal artist . painting & fashion designing are her two most important passions .
  2366.  
  2367. MORE TO BE ADDED
  2368. </div>
  2369.  
  2370.  
  2371.  
  2372.  
  2373. </li>
  2374.  
  2375.  
  2376. <li>
  2377.  
  2378. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2379. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2380. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2381. <p>––</p>
  2382. <p>TBA.</p>
  2383. </div>
  2384.  
  2385. <hr></hr>
  2386. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2387. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2388. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2389. <p>––</p>
  2390. <p>TBA.</p>
  2391. </div>
  2392.  
  2393.  
  2394. </li>
  2395.  
  2396. <li>
  2397.  
  2398. TO BE ADDED!
  2399.  
  2400. </li>
  2401.  
  2402.  
  2403. <li>
  2404.  
  2405. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  2406.  
  2407. </li>
  2408.  
  2409. <li>
  2410.  
  2411. TO BE ADDED!
  2412.  
  2413. </li>
  2414.  
  2415. </ul> <!– important. don’t delete –>
  2416. </div></div></div></div></div></div></div></div></div></div></div></div>
  2417.  
  2418. <div id="box19" class="popup_block">
  2419. <div id="popheader">AISHWARYA DHAWAN</div>
  2420.  
  2421. <div id="headerbar">
  2422. <ul id="tabs">
  2423. <li class="active">ABOUT</li>
  2424. <li>STATS</li>
  2425. <li>VERSES</li>
  2426. <li>HEAD CANONS</li>
  2427. <li>LINKS</li>
  2428. <li>EXCLUSIVES & MAINS</li>
  2429. </ul></div>
  2430. <div id="tabbar">
  2431. <ul id="tab">
  2432.  
  2433. <li class="active">
  2434.  
  2435.  
  2436. <div id="text">
  2437. TO BE ADDED, CHECK OUT STATS IN THE MEAN TIME !
  2438. </div>
  2439.  
  2440. </li>
  2441.  
  2442. <li>
  2443.  
  2444.  
  2445. <div id="text">
  2446. <p><strong>FULL NAME</strong>: &nbsp;AISHWARYA DHAWAN ( prounounced :&nbsp;Aiish-were-yah , meaning : prosperity, wealth in Sanskrit )</p>
  2447. <p><strong>ALIAS</strong>:&nbsp;</p>
  2448. <p><strong>NICKNAMES</strong>: Ash</p>
  2449. <p><strong>SPECIES</strong>: &nbsp;human ( with genetically enhanced skills ).</p>
  2450. <p><strong>GENDER</strong>: Female.</p>
  2451. <p><strong>PRONOUNS</strong> : She/Her.</p>
  2452. <p><strong>BIRTHDAY</strong> : 16 June.</p>
  2453. <p><strong>STAR SIGN</strong> : Gemini.</p>
  2454. <p><strong>PLACE OF BIRTH</strong> : Tokyo, Japan.</p>
  2455. <p><strong>RESIDENCE</strong>&nbsp;: &nbsp;Nashville, Tennessee.</p>
  2456. <p><strong>NATIONALITY</strong>&nbsp;: <strike>Indian</strike>&nbsp;American.</p>
  2457. <p><strong>ORIENTATION</strong> : heterosexual.</p>
  2458. <p><strong>EYE COLOR</strong> : hazel.</p>
  2459. <p><strong>HAIR COLOR/STYLE</strong> : dark brown / naturally wavy .</p>
  2460. <p><strong>HEIGHT</strong> : 5 &rsquo; 6</p>
  2461. <p><strong>WEIGHT</strong> : 120 lbs.</p>
  2462. <p><strong>BODY BUILD</strong> : muscular.</p>
  2463. <p><strong>TEETH</strong> : white, straight.</p>
  2464. <p><strong>PIERCINGS</strong> : Both earlobes.</p>
  2465. <p><strong>ACCENT</strong> : American with an hint of Indian.</p>
  2466. <p><strong>OCCUPATION</strong> : vigilante.</p>
  2467. <p><strong>FACE CLAIM</strong> : PRIYANKA CHOPRA.</p>
  2468. <p><strong>FAMILIARS</strong> :&nbsp;<strong style="line-height: 19.6px;">biological parents</strong><span style="line-height: 19.6px;">. Ashish Dhawan (<em>deceased</em> ) , Sonia Dhawan ( <em>deceased</em> ) . </span></p>
  2469. <p><strong>COMPASSION</strong>&nbsp;6/10.</p>
  2470. <p><strong>EMPATHY</strong>&nbsp; 5/10.</p>
  2471. <p><strong>CREATIVITY</strong> &nbsp;10/10.</p>
  2472. <p><strong>PASSION/MOTIVATION</strong> &nbsp;10/10.</p>
  2473. <p><strong>EDUCATION</strong> &nbsp;10/10.</p>
  2474. <p><strong>STAMINA</strong>&nbsp;10/10.</p>
  2475. <p><strong>PHYSICAL STRENGTH</strong>&nbsp;10/10.</p>
  2476. <p><strong>BATTLE SKILL</strong>&nbsp;10/10.</p>
  2477. <p><strong>INITIATIVE</strong>&nbsp; 10/10.</p>
  2478. <p><strong>RESTRAINT</strong> &nbsp;4/10.</p>
  2479. <p><strong>AGILITY</strong> &nbsp;10/10.</p>
  2480. <p><strong>STRATEGY</strong>&nbsp;7/10.&nbsp;</p>
  2481. <p><strong>TEAMWORK</strong> &nbsp;5/10</p>
  2482. <p><strong>POSITIVE TRAITS</strong> &nbsp;Adaptable, Attentive, Brave, Cautious, Charming, Creative, Decisive, Determined, Hard-working, Intelligent, Passionate, Inventive.</p>
  2483. <p><strong>NEGATIVE TRAITS</strong>&nbsp;ArgumentatiVe, Arrogant, Bossy, Deceptive, Domineering, Hot-tempered, Impatient, Sarcastic, Skeptical, StubborN.&nbsp;</p>
  2484. <p><strong>TEAMWORK</strong> &nbsp;5/10</p>
  2485.  
  2486.  
  2487. </li>
  2488.  
  2489.  
  2490. <li>
  2491.  
  2492. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2493. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2494. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2495. <p>––</p>
  2496. <p>TBA.</p>
  2497. </div>
  2498.  
  2499. <hr></hr>
  2500. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2501. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2502. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2503. <p>––</p>
  2504. <p>TBA.</p>
  2505. </div>
  2506.  
  2507.  
  2508. </li>
  2509.  
  2510. <li>
  2511.  
  2512. TO BE ADDED!
  2513.  
  2514. </li>
  2515.  
  2516.  
  2517. <li>
  2518.  
  2519. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  2520.  
  2521. </li>
  2522.  
  2523. <li>
  2524.  
  2525. TO BE ADDED!
  2526.  
  2527. </li>
  2528.  
  2529. </ul> <!– important. don’t delete –>
  2530. </div></div></div></div></div></div></div></div></div></div></div></div>
  2531.  
  2532.  
  2533. <div id="box20" class="popup_block">
  2534. <div id="popheader">CHERRY</div>
  2535.  
  2536. <div id="headerbar">
  2537. <ul id="tabs">
  2538. <li class="active">ABOUT</li>
  2539. <li>STATS</li>
  2540. <li>VERSES</li>
  2541. <li>HEAD CANONS</li>
  2542. <li>LINKS</li>
  2543. <li>EXCLUSIVES & MAINS</li>
  2544. </ul></div>
  2545. <div id="tabbar">
  2546. <ul id="tab">
  2547.  
  2548. <li class="active">
  2549.  
  2550. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;you came into this world on a gloomy winter’s day , ‘ it’s a girl ! ’ the nurse said , her faux enthusiastic voice disturbing the quiet room as your mother held you for the first time. you were so small , tiny form swaddled in a bright fuchsia blanket , tears glistening in big bambi eyes . your mother kissed the top of your head , carding nimble fingers through the tufts of brown hair that sat atop your crown . you were her little miracle , a desire coming to fruition after years of fruitless trying . your father didn’t share the sentiment , had prayed for a son but had gotten you instead …
  2551. <img src="http://static.tumblr.com/zq6glzh/tmRo9wh79/download-white.png"/>
  2552. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;you were four when your mother taught you how to bake , grinning widely as mussed up your curls in an affectionate manner. it was one of those days , the kind where your mother actually left her bed , a literal ray of sunshine as she puttered around the house . you watched in awe as the loaf of banana bread rose , filling the small kitchenette with its mouthwatering scent. you had just found your calling .
  2553. <img src="http://static.tumblr.com/zq6glzh/tmRo9wh79/download-white.png"/>
  2554. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;you were nine when you came home from school to find your mother bleeding out on the living room floor. you screamed , your heart pounding against your ribcage as you ran towards her unmoving form. it was a neighbor who finally dialled 911 , his arms around your shaking body as you continued to bawl , tears streaming down your heart shaped countenance . ‘ time of death — 2 : 17 pm ’ the paramedic’s words were barely heard over your grievous screams . <img src="http://static.tumblr.com/zq6glzh/tmRo9wh79/download-white.png"/>
  2555. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;your father hit the bottle before your mother’s funeral ended , his steps unsure as he carried you home. he hit you for the first time that night , a punishment too extreme for your crime , breaking a cup that your mother had held dear . from that day onwards, your fragile skin was always mottled with bruises in places no one could see .
  2556. <img src="http://static.tumblr.com/zq6glzh/tmRo9wh79/download-white.png"/>
  2557. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;you were fourteen when your father crossed the line you had set . his hand cradling your bosom as he told you how much you resembled your mother , his breath stinking of cheap whiskey as he tried to assault your lips in a sick parody of a kiss. his raspy breaths turning into screams of anguish as your bony knee connected with his crotch , again & again & again . he fell back against the cushions as you willed your feet to carry you upstairs , locking the door the moment you reached your room . it was you who dialled 911 this time . they escorted him out in handcuffs & you wish you could feel happiness at such a sight . you just felt empty .
  2558. <img src="http://static.tumblr.com/zq6glzh/tmRo9wh79/download-white.png"/>
  2559. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;they talked about you on the news , their voices riddled with faux sympathy as they made your sad plight known. ten days passed before a family came forward , volunteering to give you a home . you had no choice but to step into samuel & elizabeth aaron’s open arms , ignoring how fake their smiles seemed as they drove you to their huge mansion . it was then that you met jacob , the aarons’ only son . you kept your distance at first , expecting him to be just like his cold hearted parents . you couldn’t have been more wrong . the boy felt like a breath of fresh air to you after years of being weaned on poisonous fumes & you gasped for it . he burrowed under your scarred skin before you could stop him , astounding you day after day with his ability to put a smile on your lips even in your darkest moments . you had finally found a person you could call home .
  2560. <img src="http://static.tumblr.com/zq6glzh/tmRo9wh79/download-white.png"/>
  2561. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;you were eighteen & fresh out of highschool , when you opened ‘ bianca’s bites ’ with Jacob . baking had always been something you had wanted to do when you grew up & jacob had long since adopted your dream as his own , using his sharp wit & penchant to handle numbers to handle the business side of things . you had found the perfect place before you had even graduated , an old dilapidated bakery a few miles from where you lived . determination & daddy’s platinum card , a combination that transformed the derelict place into something that brought the crowds in on opening day. a crowd that just got bigger when the word about how frickin’ scrumptious your baked goodies were got out . you had never been more happier in your life .
  2562. <img src="http://static.tumblr.com/zq6glzh/tmRo9wh79/download-white.png"/>
  2563.  
  2564.  
  2565. </li>
  2566.  
  2567. <li>
  2568.  
  2569. <div id="popheader">GENERAL</div>
  2570. <div id="text">
  2571. <blockquote><p><b>FULL NAME</b>: &nbsp;<strike>Valeria
  2572.  
  2573. Dominguez</strike> <b>CHERRY</b></p>
  2574. <p><b>NICKNAMES</b>: cherie.</p>
  2575. <p><b>SPECIES</b>: &nbsp;Human.</p>
  2576. <p><b>GENDER</b>: Female.</p>
  2577. <p><b>PRONOUNS</b> : She/Her.</p>
  2578. <p><b>BIRTHDAY</b> : TBA</p>
  2579. <p><b>STAR SIGN</b> : TBA</p>
  2580. <p><b>PLACE OF BIRTH</b> : New York City.</p>
  2581. <p><b>RESIDENCE</b>&nbsp;: &nbsp;Verse Dependent</p>
  2582. <p><b>NATIONALITY</b>&nbsp;: &nbsp;American.</p>
  2583. <p><b>ORIENTATION</b> : Pansexual.</p>
  2584. <p><b>DOMINANT HAND</b> : Left.</p>
  2585. <p><b>ACCENT</b> : American.</p>
  2586. <p><b>OCCUPATION</b> : Co-owns a small bakery, manages all the baking.</p></blockquote></div>
  2587.  
  2588. <div id="popheader">APPEARANCE</div>
  2589. <div id="text">
  2590. <blockquote><p><b>FACE CLAIM</b> : MELANIE MARTINEZ.</p>
  2591. <p><b>EYE COLOR</b> : chocolate brown.</p>
  2592. <p><b>HAIR COLOR/STYLE</b> : one half ( right side of her head ) is black & the other half ( left side of her head ) changes constantly. .</p>
  2593. <p><b>HEIGHT</b> : 5'3</p>
  2594. <p><b>WEIGHT</b> : 110 lbs</p>
  2595. <p><b>BODY BUILD</b> : slim.</p>
  2596. <p><b>SCARS/BIRTHMARKS</b> : TBA.</p>
  2597. <p><b>TATOOS</b> : TBA.</p>
  2598. <p><b>TEETH</b> : white, gap between her molars.</p>
  2599. <p><b>PIERCINGS</b> : both earlobes , left nipple..</p></blockquote></div>
  2600.  
  2601. <div id="popheader">FAMILIARS</div>
  2602. <div id="text">
  2603. <blockquote><p><b>BIOLOGICAL PARENTS</b> : Abdiel Dominguez ( alive ) , Bianca Dominguez ( deceased ) . </p>
  2604. <p><b>ADOPTIVE SIBLINGS</b> : Jacob Aarons</p>
  2605. <p><b>ADOPTIVE PARENTS</b> : Samuel Aarons ( alive ) , Elizabeth Aarons ( alive )</p></blockquote>
  2606. </div>
  2607.  
  2608.  
  2609.  
  2610. </li>
  2611.  
  2612.  
  2613. <li>
  2614.  
  2615. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2616. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2617. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2618. <p>––</p>
  2619. <p>TBA.</p>
  2620. </div>
  2621.  
  2622. <hr></hr>
  2623. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2624. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2625. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2626. <p>––</p>
  2627. <p>TBA.</p>
  2628. </div>
  2629.  
  2630.  
  2631. </li>
  2632.  
  2633. <li>
  2634.  
  2635. TO BE ADDED!
  2636.  
  2637. </li>
  2638.  
  2639.  
  2640. <li>
  2641.  
  2642. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  2643.  
  2644. </li>
  2645.  
  2646. <li>
  2647.  
  2648. TO BE ADDED!
  2649.  
  2650. </li>
  2651.  
  2652. </ul> <!– important. don’t delete –>
  2653. </div></div></div></div></div></div></div></div></div></div></div></div>
  2654.  
  2655.  
  2656. <div id="box21" class="popup_block">
  2657. <div id="popheader">CORA HALE</div>
  2658.  
  2659. <div id="headerbar">
  2660. <ul id="tabs">
  2661. <li class="active">ABOUT</li>
  2662. <li>VERSES</li>
  2663. <li>LINKS</li>
  2664. <li>EXCLUSIVES & MAINS</li>
  2665. </ul></div>
  2666. <div id="tabbar">
  2667. <ul id="tab">
  2668.  
  2669. <li class="active">
  2670.  
  2671. <div align="center"><img src="http://static.tumblr.com/dvropz2/PZBo8734m/212874_1405831624073_full.png" style="width: 70px; padding-top: 20px; padding-bottom: 20px; padding-right: 10px; padding-left: 10px;"><img src="http://static.tumblr.com/dvropz2/iyro8734r/the-return-katherine-pierce-and-elena-gilbert-15527626-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px; padding-right: 10px;"><img src="http://static.tumblr.com/dvropz2/6XGo8734v/katherine-katherine-pierce-15599734-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px;"></div>
  2672.  
  2673. <div id="text">
  2674. Four loko tattooed small batch etsy, lumbersexual vinyl photo booth pickled paleo everyday carry fashion axe narwhal. Neutra four dollar toast cliche selfies, wolf +1 roof party. Seitan normcore fap dreamcatcher irony yr, chicharrones fixie heirloom pug put a bird on it sriracha. Meh 90's ugh paleo, neutra street art tilde swag stumptown schlitz mumblecore. Yr pabst kitsch meditation shabby chic lomo. Viral literally mlkshk direct trade helvetica. Tacos literally lumbersexual, listicle tumblr kogi viral forage.
  2675. </div>
  2676.  
  2677. </li>
  2678.  
  2679. <li>
  2680.  
  2681. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2682. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2683. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2684. <p>––</p>
  2685. <p>TBA.</p>
  2686. </div>
  2687.  
  2688. <hr></hr>
  2689. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2690. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2691. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2692. <p>––</p>
  2693. <p>TBA.</p>
  2694. </div>
  2695.  
  2696.  
  2697. </li>
  2698.  
  2699. <li>
  2700.  
  2701. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  2702.  
  2703. </li>
  2704.  
  2705. <li>
  2706.  
  2707. TO BE ADDED!
  2708.  
  2709. </li>
  2710.  
  2711. </ul> <!– important. don’t delete –>
  2712. </div></div></div></div></div></div></div></div></div></div></div></div>
  2713.  
  2714. <div id="box22" class="popup_block">
  2715. <div id="popheader">SARAH BLAKE</div>
  2716.  
  2717. <div id="headerbar">
  2718. <ul id="tabs">
  2719. <li class="active">ABOUT</li>
  2720. <li>VERSES</li>
  2721. <li>LINKS</li>
  2722. <li>EXCLUSIVES & MAINS</li>
  2723. </ul></div>
  2724. <div id="tabbar">
  2725. <ul id="tab">
  2726.  
  2727. <li class="active">
  2728.  
  2729. <div align="center"><img src="http://static.tumblr.com/dvropz2/PZBo8734m/212874_1405831624073_full.png" style="width: 70px; padding-top: 20px; padding-bottom: 20px; padding-right: 10px; padding-left: 10px;"><img src="http://static.tumblr.com/dvropz2/iyro8734r/the-return-katherine-pierce-and-elena-gilbert-15527626-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px; padding-right: 10px;"><img src="http://static.tumblr.com/dvropz2/6XGo8734v/katherine-katherine-pierce-15599734-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px;"></div>
  2730.  
  2731. <div id="text">
  2732. Four loko tattooed small batch etsy, lumbersexual vinyl photo booth pickled paleo everyday carry fashion axe narwhal. Neutra four dollar toast cliche selfies, wolf +1 roof party. Seitan normcore fap dreamcatcher irony yr, chicharrones fixie heirloom pug put a bird on it sriracha. Meh 90's ugh paleo, neutra street art tilde swag stumptown schlitz mumblecore. Yr pabst kitsch meditation shabby chic lomo. Viral literally mlkshk direct trade helvetica. Tacos literally lumbersexual, listicle tumblr kogi viral forage.
  2733. </div>
  2734.  
  2735. </li>
  2736.  
  2737. <li>
  2738.  
  2739. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2740. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2741. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2742. <p>––</p>
  2743. <p>TBA.</p>
  2744. </div>
  2745.  
  2746. <hr></hr>
  2747. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2748. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2749. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2750. <p>––</p>
  2751. <p>TBA.</p>
  2752. </div>
  2753.  
  2754.  
  2755. </li>
  2756.  
  2757. <li>
  2758.  
  2759. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  2760.  
  2761. </li>
  2762.  
  2763. <li>
  2764.  
  2765. TO BE ADDED!
  2766.  
  2767. </li>
  2768.  
  2769. </ul> <!– important. don’t delete –>
  2770. </div></div></div></div></div></div></div></div></div></div></div></div>
  2771.  
  2772. <div id="box23" class="popup_block">
  2773. <div id="popheader">ALLISON ARGENT</div>
  2774.  
  2775. <div id="headerbar">
  2776. <ul id="tabs">
  2777. <li class="active">ABOUT</li>
  2778. <li>VERSES</li>
  2779. <li>LINKS</li>
  2780. <li>EXCLUSIVES & MAINS</li>
  2781. </ul></div>
  2782. <div id="tabbar">
  2783. <ul id="tab">
  2784.  
  2785. <li class="active">
  2786.  
  2787. <div align="center"><img src="http://static.tumblr.com/dvropz2/PZBo8734m/212874_1405831624073_full.png" style="width: 70px; padding-top: 20px; padding-bottom: 20px; padding-right: 10px; padding-left: 10px;"><img src="http://static.tumblr.com/dvropz2/iyro8734r/the-return-katherine-pierce-and-elena-gilbert-15527626-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px; padding-right: 10px;"><img src="http://static.tumblr.com/dvropz2/6XGo8734v/katherine-katherine-pierce-15599734-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px;"></div>
  2788.  
  2789. <div id="text">
  2790. Four loko tattooed small batch etsy, lumbersexual vinyl photo booth pickled paleo everyday carry fashion axe narwhal. Neutra four dollar toast cliche selfies, wolf +1 roof party. Seitan normcore fap dreamcatcher irony yr, chicharrones fixie heirloom pug put a bird on it sriracha. Meh 90's ugh paleo, neutra street art tilde swag stumptown schlitz mumblecore. Yr pabst kitsch meditation shabby chic lomo. Viral literally mlkshk direct trade helvetica. Tacos literally lumbersexual, listicle tumblr kogi viral forage.
  2791. </div>
  2792.  
  2793. </li>
  2794.  
  2795. <li>
  2796.  
  2797. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2798. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2799. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2800. <p>––</p>
  2801. <p>TBA.</p>
  2802. </div>
  2803.  
  2804. <hr></hr>
  2805. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2806. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2807. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2808. <p>––</p>
  2809. <p>TBA.</p>
  2810. </div>
  2811.  
  2812.  
  2813. </li>
  2814.  
  2815. <li>
  2816.  
  2817. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  2818.  
  2819. </li>
  2820.  
  2821. <li>
  2822.  
  2823. TO BE ADDED!
  2824.  
  2825. </li>
  2826.  
  2827. </ul> <!– important. don’t delete –>
  2828. </div></div></div></div></div></div></div></div></div></div></div></div>
  2829.  
  2830. <div id="box24" class="popup_block">
  2831. <div id="popheader">BELLA SWAN</div>
  2832.  
  2833. <div id="headerbar">
  2834. <ul id="tabs">
  2835. <li class="active">ABOUT</li>
  2836. <li>VERSES</li>
  2837. <li>LINKS</li>
  2838. <li>EXCLUSIVES & MAINS</li>
  2839. </ul></div>
  2840. <div id="tabbar">
  2841. <ul id="tab">
  2842.  
  2843. <li class="active">
  2844.  
  2845. <div align="center"><img src="http://static.tumblr.com/dvropz2/PZBo8734m/212874_1405831624073_full.png" style="width: 70px; padding-top: 20px; padding-bottom: 20px; padding-right: 10px; padding-left: 10px;"><img src="http://static.tumblr.com/dvropz2/iyro8734r/the-return-katherine-pierce-and-elena-gilbert-15527626-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px; padding-right: 10px;"><img src="http://static.tumblr.com/dvropz2/6XGo8734v/katherine-katherine-pierce-15599734-1280-720.png" style="width: 70px; padding: 20px; padding-left: 10px;"></div>
  2846.  
  2847. <div id="text">
  2848. Four loko tattooed small batch etsy, lumbersexual vinyl photo booth pickled paleo everyday carry fashion axe narwhal. Neutra four dollar toast cliche selfies, wolf +1 roof party. Seitan normcore fap dreamcatcher irony yr, chicharrones fixie heirloom pug put a bird on it sriracha. Meh 90's ugh paleo, neutra street art tilde swag stumptown schlitz mumblecore. Yr pabst kitsch meditation shabby chic lomo. Viral literally mlkshk direct trade helvetica. Tacos literally lumbersexual, listicle tumblr kogi viral forage.
  2849. </div>
  2850.  
  2851. </li>
  2852.  
  2853. <li>
  2854.  
  2855. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; normal: normal; line-height: normal; text-align: justify;"><img align="right" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2856. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2857. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2858. <p>––</p>
  2859. <p>TBA.</p>
  2860. </div>
  2861.  
  2862. <hr></hr>
  2863. <p style="color: #ffffff; font-family: Helvetica; font-size: 12px; line-height: normal; text-align: justify;"><img align="left" src="http://static.tumblr.com/dvropz2/Urho808ek/tumblr_static_b47v4m5kl9w80so08080wsco0.png" /></p>
  2864. <div style="color: #ffffff; font-family:arial bold; font-size:11px; line-height: normal; text-align: center; height: 121px; width: 150px; padding: 10px; border: 0px solid ; overflow: auto;">
  2865. <blockquote style="background-image:url('http://static.tumblr.com/d4e03as/MAzogyneo/570093ae4c87bd6287f61b31283506d4.png'); border-width:1px; border-color:#ffffff; border-style:solid; padding: 4px 7px 5px; color: #ffffff; font-family:'montserrat'; text-transform:uppercase; font-weight:bolder; font-size: 11px; line-height: 14px; text-align: center;">VERSE</blockquote>
  2866. <p>––</p>
  2867. <p>TBA.</p>
  2868. </div>
  2869.  
  2870.  
  2871. </li>
  2872.  
  2873. <li>
  2874.  
  2875. <center><a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a> <a href="www.tumblr.com" class="button">TITLE</a></center>
  2876.  
  2877. </li>
  2878.  
  2879. <li>
  2880.  
  2881. TO BE ADDED!
  2882.  
  2883. </li>
  2884.  
  2885. </ul> <!– important. don’t delete –>
  2886. </div></div></div></div></div></div></div></div></div></div></div></div>
  2887.  
  2888.  
  2889.  
  2890.  
  2891.  
  2892.  
  2893.  
  2894.  
  2895.  
  2896.  
  2897.  
  2898.  
  2899.  
  2900.  
  2901.  
  2902.  
  2903.  
  2904.  
  2905.  
  2906.  
  2907.  
  2908.  
  2909.  
  2910.  
  2911.  
  2912.  
  2913. <div id="sidebar">
  2914.  
  2915.  
  2916. <div id="description"></div>
  2917.  
  2918.  
  2919. <div class="alinks"><a href="/" title="HOME"><img src="http://static.tumblr.com/d4e03as/lNNogymab/untitled-1.png"/></a></div>
  2920. <div class="blinks"><div class="pulse"><a href="#?w=350" rel="box5" class="poplight" title="ASK">✦</a></div></div>
  2921. <div class="clinks"><div class="pulse"><a href="#?w=350" rel="box4" class="poplight" title="SUBMIT">✶</a></div></div>
  2922. <div class="dlinks"><div class="pulse"><a href="#?w=350" rel="box2" class="poplight" title="GUIDELINES">☆</a></div> </div>
  2923. <div class="elinks"><div class="pulse"><a href="#?w=350" rel="box3" class="poplight" title="NAVIGATION">✸</div> </div>
  2924. <div class="flinks"><div class="pulse"><a href="#?w=350" rel="box1" class="poplight" title="CREDITS">✧</a></div></div>
  2925. <div class="credit">
  2926. <a href="http://agirlingrey.tumblr.com/" title="agirlingrey.">A.</a>
  2927. </div>
  2928.  
  2929. </div>
  2930. </div>
  2931.  
  2932. <div id="pagination">
  2933. <a href="/page/2">↝</a>
  2934.  
  2935. </div>
  2936.  
  2937. <div id="container">
  2938.  
  2939.  
  2940. </div>
  2941.  
  2942.  
  2943.  
  2944. <div id="desctwo"><p><div id="desctit">MUSES</div>
  2945. <p><a href="#?w=350" rel="box6" class="poplight" title="KATHERINE PIERCE"><img src="http://static.tumblr.com/ghjqiwk/gNDof1xie/01581_copy12.png"></a><a href="#?w=350" rel="box7" class="poplight" title="ERICA REYES"><img src="http://static.tumblr.com/ghjqiwk/3O1of1xiq/01581_copy7.png"></a><a href="#?w=350" rel="box8" class="poplight" title="RENESMEE CULLEN"><img src="http://static.tumblr.com/d4e03as/qXFoi1el1/01581_copy32.png"></a><a href="#?w=350" rel="box9" class="poplight" title="hayden romero"><img src="http://static.tumblr.com/d4e03as/Ynaoi34xb/01581_copy9.png"></a><a href="#?w=350" rel="box10" class="poplight" title="caroline forbes"><img src="http://static.tumblr.com/ghjqiwk/ZCKof1xjl/01581_copy2.png"></a><br>
  2946. <a href="#?w=350" rel="box11" class="poplight" title="malia tate"><img src="http://static.tumblr.com/ghjqiwk/LWjof1xk8/01581_copy11.png"></a><a href="#?w=350" rel="box12" class="poplight" title="hermione granger"><img src="http://static.tumblr.com/d4e03as/VOEoi34yr/01581_copy4.png"></a><a href="#?w=350" rel="box13" class="poplight" title="buttercup utonium"><img src="http://static.tumblr.com/ghjqiwk/HCXof1xku/01581_copy.png"></a><a href="#?w=350" rel="box14" class="poplight" title="melissa mccall"><img src="http://static.tumblr.com/d4e03as/xx9oi34co/01581_copy6.png"></a><a href="#?w=350" rel="box15" class="poplight" title="jesse black"><img src="http://static.tumblr.com/ghjqiwk/tMXof1xm9/01581_copy3.png"></a><br>
  2947. <a href="#?w=350" rel="box16" class="poplight" title="to be named"><img src="http://static.tumblr.com/ghjqiwk/KE4of1xpj/01581_copy1.png"></a><a href="#?w=350" rel="box17" class="poplight" title="luca black"><img src="http://static.tumblr.com/ghjqiwk/yHoof1xr2/01581_copy14.png"></a><a href="#?w=350" rel="box18" class="poplight" title="rosalie roberts"><img src="http://static.tumblr.com/d4e03as/vaIognacd/01581_copy19.png"></a><a href="#?w=350" rel="box19" class="poplight" title="aishwarya dhawan"><img src="http://static.tumblr.com/ghjqiwk/3QDof1xwx/01581_copy10.png"></a><a href="#?w=350" rel="box20" class="poplight" title="cherry"><img src="http://static.tumblr.com/ghjqiwk/KoRof1xyr/01581_copy13.png"></a><br>
  2948. <a href="#?w=350" rel="box21" class="poplight" title="cora hale"><img src="http://static.tumblr.com/ghjqiwk/evKof1ye3/01581_copy15.png"></a><a href="#?w=350" rel="box22" class="poplight" title="sarah blake"><img src="http://static.tumblr.com/d4e03as/Aliof3pbq/01581_copy17.png"></a><a href="#?w=350" rel="box23" class="poplight" title="allison argent"><img src="http://static.tumblr.com/d4e03as/2gKof3pdn/01581_copy16.png"></a><a href="#?w=350" rel="box24" class="poplight" title="bella swan"><img src="http://static.tumblr.com/d4e03as/QAfof3q0n/01581_copy18.png"></a><a href="#?w=350" rel="box25" class="poplight" title="padma patil"><img src="https://67.media.tumblr.com/11cd57487d540d8d102c281da8661650/tumblr_inline_ognar3Xi931uxt42x_540.png"></a><br>
  2949. <a href="#?w=350" rel="box26" class="poplight" title="stiles stilinski"><img src="https://66.media.tumblr.com/5ca968b07e478e76d93533d8f8ac60f8/tumblr_inline_ognb1kZZRZ1uxt42x_540.png"></a><a href="#?w=350" rel="box27" class="poplight" title="hecate"><img src="https://67.media.tumblr.com/1ead1b535d8ed7702a6104c6f256452a/tumblr_inline_ognbo1x4621uxt42x_540.png"></a><a href="#?w=350" rel="box28" class="poplight" title="elena gilbert"><img src="https://67.media.tumblr.com/a61a2a90bea58fd2d760396c35e7727e/tumblr_inline_ognbx6deU11uxt42x_540.png"></a><a href="#?w=350" rel="box29" class="poplight" title="derica hale"><img src="https://66.media.tumblr.com/f2290bece1669e6cacef367221adb234/tumblr_inline_ognc682tZy1uxt42x_540.png"></a><a href="#?w=350" rel="box30" class="poplight" title="pearl acquarone"><img src="https://66.media.tumblr.com/eb2c9ed56cf6c0b7b0d91d05132a5504/tumblr_inline_ogndvgCqRo1uxt42x_540.png"></a><br>
  2950. <a href="#?w=350" rel="box31" class="poplight" title="bubbles utonium"><img src="https://66.media.tumblr.com/252088a0565cd59293807a370576a882/tumblr_inline_ognh81qetF1uxt42x_540.png"></a><a href="#?w=350" rel="box32" class="poplight" title="' lola ' lavender reynolds"><img src="https://66.media.tumblr.com/562bb1644ef936b886f146e1508847e3/tumblr_inline_ognfqnkxZY1uxt42x_540.png"></a><a href="#?w=350" rel="box33" class="poplight" title="samantha wichester"><img src="https://67.media.tumblr.com/29b9aa1117bfe85d167351ce89ee9460/tumblr_inline_ogng20D4aV1uxt42x_540.png"></a><a href="#?w=350" rel="box34" class="poplight" title="corey"><img src="https://66.media.tumblr.com/fcc6db6f37e382399d1a13aeaa7e673f/tumblr_inline_oh52unxd3Z1uxt42x_540.png"></a><a href="#?w=350" rel="box35" class="poplight" title="lydia martin"><img src="https://66.media.tumblr.com/f558381016a9dd7ffed09f8786d97809/tumblr_inline_oh52unC9aP1uxt42x_540.png"></a><br>
  2951. <a href="#?w=350" rel="box36" class="poplight" title="rachel greene"><img src="https://66.media.tumblr.com/31d85238cc9334dfb211d9b97e87088f/tumblr_inline_oh52uoRBsU1uxt42x_540.png"></a>
  2952. </center> </div>
  2953.  
  2954.  
  2955. </div>
  2956. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement