Advertisement
aminacorey

hermione.

Feb 19th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 68.90 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. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.  
  5. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  6. <title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11. <!---- this is theme 44 by Hollywhood
  12. please don't remove the credit
  13. thank you
  14. --->
  15.  
  16. <meta name="color:Background" content="#ffffff"/>
  17. <meta name="color:Text" content="#9B9B9B"/>
  18. <meta name="color:Link" content="#fff"/>
  19. <meta name="color:scrollbar" content="#999999">
  20. <meta name="color:title" content="#999999">
  21. <meta name="color:Link Hover" content="#eeeeee"/>
  22.  
  23. <meta name="image:sidebar" content=""/>
  24. <meta name="text:sidebartitle" content="">
  25. <meta name="image:background" content=""/>
  26. <meta name="image:thekey" content=""/>
  27. <meta name="image:pop" content""/>
  28.  
  29. <meta name="text:link 1" content="Link 1 Title"/>
  30. <meta name="text:link 1 url" content="/"/>
  31. <meta name="text:link 2" content="Link 2 Title"/>
  32. <meta name="text:link 2 url" content="/"/>
  33. <meta name="text:link 3" content="Link 3 Title"/>
  34. <meta name="text:link 3 url" content="/"/>
  35. <meta name="text:link 4" content="Link 4 Title"/>
  36. <meta name="text:link 4 url" content="/"/>
  37. <meta name="text:link 5" content="Link 5 Title"/>
  38. <meta name="text:link 5 url" content="/"/>
  39. <meta name="text:link 6" content="Link 6 Title"/>
  40. <meta name="text:link 6 url" content="/"/>
  41.  
  42. <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:700' rel='stylesheet' type='text/css'>
  43. <link href='https://fonts.googleapis.com/css?family=La+Belle+Aurore' rel='stylesheet' type='text/css'>
  44.  
  45. <!--Pop-up-->
  46. <script type="text/javascript"
  47. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  48. <script>
  49. $(document).ready(function() {
  50. //
  51. //When you click on a link with class of poplight and the href starts with a #
  52. $('a.poplight[href^=#]').click(function() {
  53. var popID = $(this).attr('rel'); //Get Popup Name
  54. var popURL = $(this).attr('href'); //Get Popup href to define size
  55. //Pull Query & Variables from href URL
  56. var query= popURL.split('?');
  57. var dim= query[1].split('&');
  58. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  59. //Fade in the Popup and add close button
  60. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) });
  61. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  62. var popMargTop = ($('#' + popID).height() + 0) ;
  63. var popMargLeft = ($('#' + popID).width() + 35) / 2;
  64. //Apply Margin to Popup
  65. $('#' + popID).css({
  66. 'margin-top' : -popMargTop,
  67. 'margin-left' : -popMargLeft
  68. });
  69. //Fade in Background
  70. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  71. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  72. return false;
  73. });
  74. //Close Popups and Fade Layer
  75. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  76. $('#fade , .popup_block').fadeOut(function() {
  77. $('#fade, a.close').remove(); //fade them both out
  78. });
  79. return false;
  80. });
  81. });
  82.  
  83. </script>
  84. <!--Pop-up ends-->
  85.  
  86. <!--askerpopup-->
  87. <script type="text/javascript"
  88. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  89. <script>
  90. $(document).ready(function() {
  91. //
  92. $('a.poplight[href^=#]').click(function() {
  93. var popID = $(this).attr('rel'); //Get Popup Name
  94. var popURL = $(this).attr('href'); //Get Popup href to define size
  95. var query= popURL.split('?');
  96. var dim= query[1].split('&');
  97. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  98. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  99. var popMargTop = ($('#' + popID).height() + 80) / 2;
  100. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  101. //Apply Margin to Popup
  102. $('#' + popID).css({
  103. 'margin-top' : -popMargTop,
  104. 'margin-left' : -popMargLeft
  105. });
  106. $('body').append('<div id="fade"></div>');
  107. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  108. return false;
  109. });
  110. $('a.close, #fade').live('click', function() {
  111. $('#fade , .popup_block').fadeOut(function() {
  112. $('#fade, a.close').remove(); //fade them both out
  113. });
  114. return false;
  115. });
  116. });
  117. </script>
  118.  
  119. <script type="text/javascript">
  120. WebFontConfig = {
  121. google: { families: [ 'Source+Sans+Pro:700:latin' ] }
  122. };
  123. (function() {
  124. var wf = document.createElement('script');
  125. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  126. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  127. wf.type = 'text/javascript';
  128. wf.async = 'true';
  129. var s = document.getElementsByTagName('script')[0];
  130. s.parentNode.insertBefore(wf, s);
  131. })(); </script>
  132.  
  133. <script type="text/javascript">
  134. WebFontConfig = {
  135. google: { families: [ 'La+Belle+Aurore::latin' ] }
  136. };
  137. (function() {
  138. var wf = document.createElement('script');
  139. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  140. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  141. wf.type = 'text/javascript';
  142. wf.async = 'true';
  143. var s = document.getElementsByTagName('script')[0];
  144. s.parentNode.insertBefore(wf, s);
  145. })(); </script>
  146.  
  147. <style type="text/css">
  148.  
  149.  
  150.  
  151. #bite
  152. #bite a{
  153. display:block
  154. }
  155. #bite .death {
  156. margin-top:0px;filter: alpha(opacity = 0);
  157. opacity:0;-webkit-transition: all 0.5s ease-out;
  158. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  159. }
  160.  
  161. #bite:hover .death {
  162. margin-top:0px;
  163. -webkit-transition: all 0.8s ease-out;
  164. -moz-transition: all 0.8s ease-out;
  165. transition: all 0.8s ease-out;
  166. filter: alpha(opacity = 100);
  167. filter: alpha(opacity = 100);
  168. opacity:0.6;
  169. }
  170.  
  171.  
  172. .scroll{
  173. text-align:left;
  174. padding:10px;
  175. width: 250px; /* width of scroll box */
  176. height: 300px; /* height of scroll box */
  177. background-color: #000; /* background of box */
  178. color: #fff; /* TEXT color */
  179.  
  180. font-size: 10px;
  181. font-family: 'calibri';
  182.  
  183. overflow: auto;
  184. }
  185.  
  186. /*
  187.  
  188. ----------------------------------
  189. Scroll bar code
  190. ----------------------------------
  191.  
  192. */
  193.  
  194. .scroll::-webkit-scrollbar {
  195. height: 10px;
  196. width: 10px;
  197. background: #aaa; /* Scrollbar background color */
  198. }
  199.  
  200. .scroll::-webkit-scrollbar-thumb {
  201. background-color: #aaa; /* Scroll bar color */
  202. border:1px solid #ffffff;
  203.  
  204. -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
  205. }
  206.  
  207. .scroll::-webkit-scrollbar-corner {
  208. background: #aaa;
  209. }
  210.  
  211.  
  212.  
  213. /*pops*/
  214.  
  215. #fade {
  216. display: none;
  217. background: transparent;
  218. position: fixed;
  219. left: 0;
  220. top: 200;
  221. width: 100%;
  222. height: 100%;
  223. opacity: .0;
  224. z-index: 9999;
  225. }
  226.  
  227. .popup_block{
  228. display: none;
  229.  
  230.  
  231. padding-left: 10px;
  232. padding-right: 0px;
  233. padding-top: 10px;
  234. padding-bottom: 10px;
  235. text-align:center;
  236. float: center;
  237. position: fixed;
  238. top:400px;
  239. width:50%;
  240. left:50%;
  241. z-index: 99999;
  242. }
  243.  
  244. img.btn_close {
  245. float: right;
  246. margin: -55px -55px 0 0;
  247. }
  248.  
  249. *html #fade {
  250. position: absolute;
  251. }
  252.  
  253. *html .popup_block {
  254. position: absolute;
  255. }
  256.  
  257. /* Pop-up END */
  258.  
  259.  
  260.  
  261. .popup_block{
  262. display:none;
  263. background:#000
  264. opacity:0px;
  265. padding:-5px;
  266. border:0px /* if you want a solid white pop-up, delete this */
  267. float:left;
  268. width:200px;
  269. position:fixed;
  270. z-index: 99999;
  271. opacity:1;
  272. -webkit-box-shadow: 0px 0px 0px #b3b3b3; /* delete for solid white */
  273. -moz-box-shadow: 0px 0px 0px #b3b3b3; /* delete for solid white */
  274. box-shadow: 0px 0px 0px #b3b3b3; /* delete for solid white */
  275. }
  276.  
  277. *html #fade {position: absolute;}
  278. *html .popup_block {position: absolute;}
  279. #fade {
  280. display:none;
  281. position:fixed;
  282. left:0px;
  283. top:0px;
  284. width:100%;
  285. height:100%;
  286. z-index:9999;
  287. background:#000; /* change to #fff for solid white */
  288. opacity:0.7; /* change to opacity:1; */
  289. }
  290.  
  291.  
  292.  
  293.  
  294. /* UPDATES TAB */
  295.  
  296. /* okay so this is the hover code don't touch it because if you do you will break everything sorry */
  297.  
  298. #hover
  299. #hover a{
  300. display:block
  301. }
  302. #hover .meow {
  303. margin-top:0px;filter: alpha(opacity = 0);
  304. opacity:0;-webkit-transition: all 0.8s ease-out;
  305. -moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;
  306. }
  307.  
  308. #hover:hover .meow {
  309. margin-top:0px;
  310. -webkit-transition: all 0.8s ease-out;
  311. -moz-transition: all 0.8s ease-out;
  312. transition: all 0.8s ease-out;
  313. filter: alpha(opacity = 100);
  314. filter: alpha(opacity = 100);
  315. opacity:100;
  316. }
  317.  
  318. /* ok end of hover code now you can edit things woohoo */
  319.  
  320.  
  321.  
  322. ::-webkit-scrollbar-thumb{
  323. background-color: #b3b3b3;
  324. border: 2px solid #b3b3b3;
  325. height:auto;
  326. }
  327.  
  328. ::-webkit-scrollbar {
  329. height:auto;
  330. width:11px;
  331. background-color: #b3b3b3;
  332. border:5px solid #b3b3b3;
  333. }
  334.  
  335.  
  336. iframe#tumblr_controls {
  337. white-space:nowrap;
  338. -webkit-filter: invert(100%);
  339. -moz-filter: invert(100%);
  340. -o-filter: invert(100%);
  341. -ms-filter: invert(100%);
  342. filter: invert(100%);
  343. opacity:.2;transition: .8s ease-in-out;
  344. -webkit-transition: .8s ease-in-out;
  345. -moz-transition: .8s ease-in-out;
  346. -o-transition: .8s ease-in-out;
  347. }
  348.  
  349. h1 {
  350. font-weight:normal;
  351. font-size:13px;
  352. text-align:center;
  353. font-style:normal;
  354. line-height:100%;
  355. letter-spacing:1px;
  356. text-transform:normal;
  357. color:{color:text};
  358. }
  359.  
  360. h2 {
  361. font-size:10px;
  362. text-align:center;
  363. line-height:100%;
  364. letter-spacing:-0.5px;
  365. color:{color:text};
  366. font-weight:bold;
  367. text-transform:uppercase;
  368. padding:5px;
  369. padding-bottom:2px;
  370. }
  371.  
  372.  
  373. blockquote {
  374. padding:2px 7px;
  375. margin:3px 0 3px 8px;
  376. background-color:transparent;
  377. border-left:2px solid #666 ;
  378. border-radius:10px;
  379. }
  380.  
  381.  
  382.  
  383. body {
  384. margin:0px;
  385. font-family:arial;
  386. text-transform:bold;
  387. line-height:100%;
  388. font-size:12px;
  389. text-align:justify;
  390. background-repeat: no-repeat;
  391. color:{color:text};
  392. background:{color:background} url('{image:background}')
  393. }
  394.  
  395. a {
  396. text-decoration:none;
  397. outline:none;
  398. -moz-outline-style:none;
  399. color:{color:link};
  400. -moz-transition-duration:0.5s;
  401. -webkit-transition-duration:0.5s;
  402. -o-transition-duration:0.5s;
  403. }
  404.  
  405. a:hover {
  406. text-decoration:none;
  407. outline:none;
  408. -moz-outline-style:none;
  409. color:{color:link hover};
  410. }
  411.  
  412. img {
  413. border:none;
  414. }
  415.  
  416. /* --- UPDATES ---*/
  417.  
  418. #updates {
  419. font-size:9px;
  420. color:#fff;
  421. text-align:left;
  422. height:15px;
  423. width:100px;
  424. padding:4px;
  425. top:300px;
  426. left:950px;
  427. z-index:10;
  428. text-transform:center;
  429. position:fixed;
  430. overflow:hidden;
  431. -webkit-transition: all 0.5s ease-in-out;
  432. -moz-transition: all 0.5s ease-in-out;
  433. -o-transition: all 0.5s ease-in-out;
  434. }
  435.  
  436. #updates:hover {
  437. height:295px;
  438. -webkit-transition: all 0.5s ease-in-out;
  439. -moz-transition: all 0.5s ease-in-out;
  440. -o-transition: all 0.5s ease-in-out;
  441. }
  442.  
  443. #updatestitle {
  444. font-size:10px;
  445. text-transform:uppercase;
  446. font-family:arial;
  447. font-weight:bold;
  448. color:#fff;
  449. }
  450.  
  451. #container {margin: auto;
  452. width: 900px;}
  453.  
  454. #pcontainer {
  455. background-color: #000;
  456. width:264px;
  457. height:293px;
  458. padding: 0px;
  459. top:282px;
  460. left:393px;
  461. position:fixed;
  462. overflow-y:scroll;
  463. overflow-x:hidden;
  464. border:0px solid {color:Link Hover};
  465. background:rgba(255,255,255,0.0);
  466. background-size:cover;
  467. box-shadow:rgba(100,100,100,0.0) 0px 0px 0px;
  468. }
  469.  
  470. #post {
  471. width:250px;
  472. padding-bottom:20px;
  473. margin-top:3px;
  474. opacity:0.3;
  475. -webkit-transition: all 0.7s ease;
  476. -moz-transition: all 0.7s ease;
  477. -o-transition: all 0.7s ease;
  478. }
  479.  
  480. #post:hover {
  481. opacity:0.6;
  482. }
  483.  
  484. #entries {
  485. padding:10px;
  486. width:250px;
  487. margin-left:0px;
  488. margin-top:3px;
  489. margin-bottom:20px;
  490. }
  491.  
  492. b, strong {
  493. font-family: 'Source Sans Pro', sans-serif;
  494. font-size:10px;
  495. font-style:normal;
  496. padding-left:3px;
  497. padding-right:3px;
  498. text-transform:uppercase;
  499. padding: 0px;
  500. text-shadow: 0px 0px 0px #eee;
  501. color:#fff;
  502. }
  503.  
  504.  
  505. i, em {
  506. font-family: 'La Belle Aurore', cursive;
  507. font-size: 11px;
  508. font-style:normal;
  509. padding-left:3px;
  510. padding-right:3px;
  511. text-transform:lowercase;
  512. padding: 0px;
  513. text-shadow: 1px 1px 2px #eee;
  514. color:#fff;
  515. }
  516.  
  517. #theme {
  518. width:250px;
  519. margin:0 auto -12px auto;
  520. }
  521.  
  522. #sidebar {
  523. color:{color:text};
  524. width:0px;
  525. height:auto;
  526. margin-top:90px;
  527. margin-left:165px;
  528. text-align:left;
  529. }
  530.  
  531. #sidebarimage img {
  532. width:0px;
  533. opacity:.9;
  534. margin-top:-10px;
  535. margin-bottom:0px;
  536. margin-left:403px;
  537. }
  538.  
  539.  
  540. .anavlinks {
  541. transform: rotate(20deg);
  542. text-shadow:1px 1px 3px #000;
  543. color:{color:Special};
  544. text-shadow: #7f7f7f 0 0 7px;
  545. background: transparent;
  546. padding: 2px;
  547. position: fixed;
  548. height:auto;
  549. width: 100px;
  550. top:350px;
  551. left:270px;
  552. font-family: tahoma;
  553. text-transform:uppercase;
  554. text-align: right;
  555. font-size: 17px;
  556. letter-spacing:0.5px;
  557. line-height:130%;
  558. padding-top: 2px;
  559. }
  560.  
  561. .navlinks a {
  562. color:{color:link};
  563. }
  564.  
  565. a:hover{
  566.  
  567. color: transparent;
  568.  
  569. text-shadow: #7f7f7f 0 0 5px;
  570.  
  571. text-decoration:none;
  572.  
  573. }
  574.  
  575. .bnavlinks {
  576. transform: rotate(20deg);
  577. color:{color:Special};
  578. background: transparent;
  579. padding: 2px;
  580. position: fixed;
  581. height:auto;
  582. width: 100px;
  583. top:-10px;
  584. left:-80px;
  585. font-family: tahoma;
  586. text-transform:uppercase;
  587. text-align: right;
  588. font-size: 15px;
  589. letter-spacing:0.5px;
  590. line-height:130%;
  591. padding-top: 2px;
  592. }
  593.  
  594. .navlinks a {
  595. color:{color:link};
  596. }
  597.  
  598. .navlinks a:hover {
  599. color: {color:link hover};
  600. text-transform: uppercase;
  601. }
  602.  
  603.  
  604. .cnavlinks {
  605.  
  606. color:{color:Special};
  607. background: transparent;
  608. padding: 2px;
  609. position: fixed;
  610. height:auto;
  611. width: 100px;
  612. top:-50px;
  613. left:-40px;
  614. font-family: tahoma;
  615. text-transform:uppercase;
  616. text-align: right;
  617. font-size: 20px;
  618. letter-spacing:0.5px;
  619. line-height:130%;
  620. padding-top: 2px;
  621. }
  622.  
  623. .navlinks a {
  624. color:{color:link};
  625. }
  626.  
  627. .navlinks a:hover {
  628. color: {color:link hover};
  629. text-transform: uppercase;
  630. }
  631.  
  632.  
  633. .dnavlinks {
  634. color:{color:Special};
  635. background: transparent;
  636. padding: 2px;
  637. position: fixed;
  638. height:auto;
  639. width: 100px;
  640. top:40px;
  641. left:-45px;
  642. font-family: tahoma;
  643. text-transform:uppercase;
  644. text-align: right;
  645. font-size: 25px;
  646. letter-spacing:0.5px;
  647. line-height:130%;
  648. padding-top: 2px;
  649. }
  650.  
  651. .navlinks a {
  652. color:{color:link};
  653. }
  654.  
  655. .navlinks a:hover {
  656. color: {color:link hover};
  657. text-transform: uppercase;
  658. }
  659.  
  660. .enavlinks {
  661. color:{color:Special};
  662. background: transparent;
  663. padding: 2px;
  664. position: fixed;
  665. height:auto;
  666. width: 100px;
  667. top:0px;
  668. left:-178px;
  669. font-family: tahoma;
  670.  
  671. text-align: right;
  672. font-size: 25px;
  673. letter-spacing:0.5px;
  674. line-height:130%;
  675. padding-top: 2px;
  676. }
  677.  
  678. .navlinks a {
  679. color:{color:link};
  680. }
  681.  
  682. .navlinks a:hover {
  683. color: {color:link hover};
  684.  
  685. } #description {
  686. width:258px;
  687. font-family:arial;
  688. margin-top:490px;
  689. margin-left:-364px;
  690. text-align:center;
  691. font-size:9.5px;
  692. opacity:0.7;
  693. color: {color:text};
  694. text-transform:lowercase;
  695. text-transform:italic;
  696. letter-spacing:0px;
  697. line-height:170%;
  698. -moz-transition-duration:1s;
  699. -webkit-transition-duration:1s;
  700. -o-transition-duration:1s;
  701. }
  702.  
  703. #description a {
  704. color:{color:link};
  705. }
  706.  
  707. #description a:hover {
  708. color:{color:link hover};
  709. }
  710.  
  711. .sidebartitle {
  712. width:0px;
  713. text-align:center;
  714. font-family:'californian fb';
  715. line-height:120%;
  716. margin-left:-58px;
  717. word-spacing:2px;
  718. font-style:italic;
  719. font-size:16px;
  720. margin-top:10px;
  721. color:{color:title};
  722. }
  723.  
  724. #pagination {
  725. font-family:corbel;
  726. width:250px;
  727. font-size:9px;
  728. margin-top:25px;
  729. margin-left:-8px;
  730. padding-left:5px;
  731. letter-spacing:1px;
  732. text-align:center;
  733. text-transform:uppercase;
  734. }
  735.  
  736. #pagination a {
  737. color:{color:link};
  738. }
  739.  
  740. #info {
  741. font-family:arial;
  742. width:250px;
  743. margin-top:8px;
  744. padding-top:4px;
  745. font-size:10px;
  746. border-top:1px solid #ddd;
  747. opacity:1;
  748. color:{color:text};
  749. text-transform:uppercase;
  750. font-style:normal;
  751. text-align:left;
  752.  
  753. }
  754.  
  755. #info a {
  756. color:{color:link};
  757. }
  758.  
  759.  
  760.  
  761. .tags {
  762. font-family:arial;
  763. font-style:normal;
  764. width:250px;
  765. margin-top:4px;
  766. text-transform:normal;
  767. font-style:normal;
  768. line-height:120%;
  769. padding-top:0px;
  770. font-size:8px;
  771. opacity:1;
  772. letter-spacing:1px;
  773. text-align:left;
  774.  
  775. }
  776. .tags a{
  777. color:{color:link};
  778.  
  779. }
  780.  
  781.  
  782.  
  783.  
  784. .audio{
  785. background-color:#e5e5e5;
  786. height:65px;
  787. overflow:hidden;
  788. }
  789.  
  790. #ask {
  791. float:left;
  792. color:{color:text};
  793. }
  794.  
  795. #credit {
  796. font-size:9px;
  797. font-family:cambria;
  798. font-style:italic;
  799. letter-spacing:1px;
  800. -moz-transition-duration:0.5s;
  801. -webkit-transition-duration:0.5s;
  802. -o-transition-duration:0.5s;
  803. }
  804.  
  805. #credit a {
  806. background-color:#e6e6e6;
  807. padding:5px;
  808. color:#000000;
  809. border:1px solid #000;
  810. position:fixed;
  811. right:15px;
  812. bottom:10px
  813. }
  814.  
  815. #credit a:hover {
  816. color:#fff;
  817. background-color:#191919;
  818. }
  819.  
  820. {CustomCSS}</style>
  821.  
  822. </head><body>
  823.  
  824.  
  825.  
  826. <div id="updates">
  827. <div id="updatestitle">h. granger.</div>
  828.  
  829. <div style="padding-top:10px;">
  830. <script language="JavaScript">var fhs = document.createElement('script');var fhs_id = "5227962";
  831. var ref = (''+document.referrer+'');var pn = window.location;var w_h = window.screen.width + " x " + window.screen.height;
  832. fhs.src = "//freehostedscripts.net/ocounter.php?site="+fhs_id+"&e1=&e2=&r="+ref+"&wh="+w_h+"&a=1&pn="+pn+"";
  833. document.head.appendChild(fhs);document.write("<span id='o_"+fhs_id+"'></span>");
  834. </script> / <script language="JavaScript">var fhsh = document.createElement('script');var fhs_id_h = "3097056";
  835. fhsh.src = "//freehostedscripts.net/ocount.php?site="+fhs_id_h+"&name=&a=1";
  836. document.head.appendChild(fhsh);document.write("<span id='h_"+fhs_id_h+"'></span>");
  837. </script>
  838. <p>
  839. <em>est:</em> february 2016.
  840.  
  841. <p>
  842. written by <strong><em>amina.</em></strong>
  843.  
  844. <p>
  845.  
  846. <em>❛</em> one of my best friends is muggle-born, <strong><em>&</em></strong> she's the best in <em></em>our year. ❜</em>
  847. <p>
  848. <embed src="http://www.sheepproductions.com/billy/billy.swf?autoplay=true&f0=https://dl.dropboxusercontent.com/content_link/GzrwVeBL4zULAQVHz8WmUP6qzRXFRIKqbaGdJGd1PlxLNntqbjzIBJyXFTFM1C1b/file&t0=courtyard.&f1=https://dl.dropboxusercontent.com/content_link/xBtWjj5zoHCYdZR6Mdtc6kQZXOPQIYdqhMJCvkd81efIj4pS4vHIOY3s0YoAeYYe/file&t1=obliviate.&f2=https://dl.dropboxusercontent.com/content_link/Gx2JYHCitbqz31981r5V7faRCYFiloghgrZTnm17NRWQ1Oann02xkvGRewjmoaAR/file&t2=dumbledore.&f3=https://dl.dropboxusercontent.com/content_link/obWtw4wxoTc5YCnAnMWSRAwKPKvPUV08FG7ugNq1LBSUqYaavF6TdV7Kj24RCwHk/file&t3=statues.&f4=https://dl.dropboxusercontent.com/content_link/XwPnqSF6QvkbhqETxcqzLwSwhLwJrjp84wP9p5pD5OtlKYaBH4ZB17E1PlOwu8DA/file&t4=headmaster.&total=5" quality="high" wmode="transparent" width="160" height="10" name="billy" align="middle" type="application/x-shockwave-flash" />
  849. <p>
  850. independent <strong><em>&</em></strong> private hermione granger from the <strong>harry potter</strong> series.
  851.  
  852.  
  853. </div></div>
  854.  
  855.  
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863. <div id="theme">
  864.  
  865. <div id="sidebar">
  866.  
  867. <div id="sidebarimage">
  868. <a href="/"><img src="{image:sidebar}"></a></div>
  869.  
  870. <div class="sidebartitle">{text:sidebartitle}</div>
  871.  
  872.  
  873. <div class="anavlinks">
  874. <a href="/" title="return">01.</a></a><br /><br />
  875. <div class="bnavlinks">
  876. <a href="#?w=300" rel="box1" class="poplight" title="message.">02.</a><br /><br /></div>
  877. <div class="cnavlinks">
  878. <a href="#?w=300" rel="box2" class="poplight" title="guidelines.">03.</a><br /><br /></div>
  879. <div class="dnavlinks">
  880. <a href="#?w=300" rel="box3" class="poplight" title="verses.">04.</a><br /><br /></div>
  881. <a href="#?w=300" rel="box4" class="poplight" title="stats.">05.</a><br /><br /></div>
  882.  
  883.  
  884.  
  885.  
  886. <div id="description">{description}</div>
  887.  
  888. </div>
  889. <div id="pcontainer">
  890. <div id="entries">{block:Posts}<div id="post">
  891.  
  892. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  893.  
  894. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  895.  
  896. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  897.  
  898. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  899.  
  900. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  901.  
  902. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  903.  
  904. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  905.  
  906. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  907.  
  908. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #e3e3e3;padding:2px;"></div> <em>{Asker}:</em><br> "{Question}"<br><br>{Answer}{/block:Answer}
  909.  
  910. {block:Date}<div id="info"><a href="{Permalink}">{TimeAgo}</a> {block:NoteCount}with <a href="{Permalink}">{NoteCountWithLabel}</a> {/block:NoteCount}{block:RebloggedFrom} via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  911. {block:ContentSource} ( source: <a href="{SourceURL}">{SourceLink}</a> ){/block:ContentSource}{/block:Date}</div>
  912. {block:HasTags}
  913. <div class="tags">
  914. {block:Tags} #<a href="{TagURL}"> {Tag}</a>{/block:Tags}</div>
  915. {/block:HasTags}
  916.  
  917.  
  918.  
  919. <div class="postnote">
  920. {block:PostNotes}{PostNotes}{/block:PostNotes}
  921. </div>
  922. </div>
  923. {/block:Posts}
  924.  
  925. <div id="pagination">
  926. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">←&nbsp;&nbsp;&nbsp; fall.</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}">rise.&nbsp;&nbsp;&nbsp; →</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  927.  
  928. </div>
  929.  
  930.  
  931. </body>
  932.  
  933. <div id="box1" class="popup_block"> <div class="scroll">
  934. <div style="font-size:10px;color:#fff;text-align:center;letter-spacing:1px;font-family:calibri"><img src="https://40.media.tumblr.com/82bdf25716e878a779091593dfa4bde6/tumblr_inline_o2tg3cyau91u22ohe_540.png"><br><strong>ASK THE BRIGHTEST WITCH.</strong></div>
  935. <p><iframe frameborder="0" height="200" id="ask_form" src="http://www.tumblr.com/ask_form/bravecrux.tumblr.com" width="100%"></iframe></p>
  936. </div></div>
  937.  
  938. </div></div></div></div></div></div></div></div></div></div>
  939.  
  940. <div id="box2" class="popup_block"> <div class="scroll">
  941. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px margin-top:100px width:200px"></div>
  942. <center><strong><a href="#?w=300" rel="box2" class="poplight">RULES.</a> <a href="#?w=300" rel="box7" class="poplight">EXCLUSIVES.</a> </strong></center><p>
  943. <center><img src="https://40.media.tumblr.com/e1fa6e0f1bf4d4bfe5178447e1c12477/tumblr_inline_o2tg2hLEcV1u22ohe_540.png"><br><strong>GUIDELINES.</strong></center><br>
  944. <center> hello, <strong><em>&</em></strong> thank you very much for reading this page. i don't have many rules, so this shouldn't take too long. i would just like to point out early on that this blog is based off of my personal interpretation of hermione, <strong><em>&</em></strong> while i do believe i understand her character, my views may differ from others.</center><p>
  945. <center> <strong>01.</strong>
  946.  
  947. i am not associated with emma watson, hermione granger, the harry potter books or movies, or j.k. rowling. i don’t claim to own any canon story lines or plots. i only own the writing on this blog <strong><em>&</em></strong> the graphics, icons, etc.
  948. <p>
  949. <strong>02.</strong>
  950.  
  951. i am a selective writer, <strong><em>&</em></strong> will likely keep my interactions to mutuals only. if you have an idea, don't be afraid to come into my inbox <strong><em>&</em></strong> yell at me about it <strong><em>&</em></strong> also feel free to like any starter calls, no matter how long ago they were posted. starter calls are open to anyone, unless explicity stating 'mutuals only.'
  952. <p>
  953. <strong>03.</strong>
  954.  
  955. i spend a lot of time on my icons <strong><em>&</em></strong> make them all myself, so please don't steal them. of course, if you'd like help with psds, themes, or icons, you can always ask questions or even ask for me to make something for you. but be warned, i take my time so please don't rush anything.
  956. <p>
  957. <strong>04.</strong>
  958.  
  959. my writing is set within the canon storylines of all harry potter books <strong><em>&</em></strong> movies. that being said, i enjoy primarily writing within the order of the phoenix <strong><em>&</em></strong> the half-blood prince timelines. while my main verses are set within those two books/movies, i am more than willing to write hermione within any other book or movie, as well as post-war verses, <strong><em>&</em></strong> definitely crossovers. my main post-war verse is based off of j.k. rowling's statement on what hermione did after the war.
  960. <p>
  961. <strong>05.</strong>
  962.  
  963. as i may not have all crossover verses set up immediately, here is a list of all fandoms i have knowledge of: teen wolf, the originals, supernatural, jessica jones, pretty little liars, the flash, daredevil, arrow, all marvel movies, once upon a time, reign, scream queens, american horror story, agents of shield, finding carter, faking it, the 100, doctor who, quantico, criminal minds, how to get away with murder, scream, the mortal instruments, the infernal devices, star wars, the walking dead, <strong><em>&</em></strong> fear the walking dead.
  964. <p>
  965. <strong>06.</strong>
  966.  
  967. i apologize if this was a bit long, <strong><em>&</em></strong> i'm glad you've made it till the end<strong><em>!</em></strong> my name is amina, i'm eighteen years old, she/her. i swear i'm really friendly <strong><em>&</em></strong> you can always come to me for a chat or as i've said, help with graphics, themes, resources, etc. mutuals are also welcome to ask for my skype username.
  968. </center>
  969. </div></div>
  970.  
  971.  
  972.  
  973. </div></div></div></div></div></div></div></div></div></div>
  974.  
  975.  
  976. <div id="box3" class="popup_block"> <div class="scroll">
  977. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px"></div>
  978. <center><strong><a href="#?w=300" rel="box3" class="poplight">MAIN.</a> <a href="#?w=300" rel="box5" class="poplight">CANON.</a> <a href="#?w=300" rel="box6" class="poplight">ALTERNATE.</a></strong></center>
  979. <p>
  980. <center> <img src="https://40.media.tumblr.com/0777aeb04e6e23042c046ec5b9fde5b0/tumblr_inline_o2tg2j38WU1u22ohe_540.png"></center>
  981. <p>
  982. <center><strong> MAIN VERSES.</strong></center>
  983. <P>
  984. <center><strong>the order of the phoenix verse:
  985. <br>
  986. tag: ┋' ARC: TWO MOONS OF GRIEF AND RAGE — WAX AND WANE IN THE STARLESS SKY. </strong>
  987. <br>
  988. set within the canon storyline of <strong>harry potter and the order of the phoenix</strong>. both book <strong><em>&</em></strong> movie based. during the time when the ministry has infiltrated hogwarts <strong><em>&</em></strong> begins interfering with the inner workings of hogwarts. once dolores umbridge is named as high inquisitor of the school, the change truly begins. not only is her method of preferred teaching impractical, but her notions of punishment are simply barbaric. in order to prepare themselves for the return of voldemort, <strong><em>&</em></strong> learn defense against the dark arts, a selective group of students form the D.A. also known as, dumbledore's army.</center>
  989. <p>
  990.  
  991.  
  992. <center><strong>the half-blood prince verse:
  993. <br>
  994. tag: ┋' ARC: THERE’S A CURSE ON US. IT’S NOT OUR FAULT — IT IS OUR FAULT.</strong>
  995. <br>
  996. set within the canon storyline of <strong>harry potter and the half-blood prince</strong>. both book <strong><em>&</em></strong> movie based. set during hermione's sixth year at hogwarts, when voldemort's return has been confirmed by the ministry. much of her time is spent trying to pry harry from his potion's book, as well as his new theory that draco malfoy is now a death eater. her confidence has slightly dipped, as harry has become the rising star in their potion's class, yet she vehemently refuses to use his scrawled directions. her, harry, <strong><em>&</em></strong> ron also spend several hours discussing harry's lessons with dumbledore <strong><em>&</em></strong> ways to persuade professor slughorn into giving him a particularly shameful memory concerning lord voldemort.</center
  997. <p>
  998.  
  999.  
  1000. </div></div>
  1001.  
  1002.  
  1003.  
  1004. </div></div></div></div></div></div></div></div></div></div>
  1005.  
  1006.  
  1007. <div id="box4" class="popup_block"> <div class="scroll">
  1008. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px"></div>
  1009.  
  1010. <center><strong> STATS.</strong></center><p>
  1011.  
  1012. <center> <img src="https://41.media.tumblr.com/1a65023576919fe5bd702d8a3f6bf587/tumblr_inline_o2tn8l6kEN1u22ohe_540.png"></center>
  1013.  
  1014. <blockquote><strong>BASICS:</strong></blockquote>
  1015.  
  1016. <strong>FULL NAME:</strong> hermione jean granger.<br>
  1017. <strong>NICKNAME(S):</strong> hermy, filthy little mudblood, herm-own-ninny, her-my-own, herm-i-own, little miss perfect, miss prissy, mafalda hopkirk ( polyjuice potion ), harry potter ( polyjuice potion ), penelope clearwater, bellatrix lestrange ( polyjuice potion ), bored yawn.<br>
  1018. <strong>ARCHETYPE:</strong> protagonist, cotagonist, reason.<br>
  1019. <strong>AGE:</strong> 11-17. verse dependent.<br>
  1020. <strong>SPECIES:</strong> witch.<br>
  1021. <strong>NATIONALITY:</strong> british.<br>
  1022. <strong>GENDER:</strong> female.<br>
  1023. <strong>PREFERRED PRONOUNS:</strong> she/her.<br>
  1024. <strong>ROMANTIC ORIENTATION:</strong> demiromantic.<br>
  1025. <strong>SEXUAL ORIENTATION:</strong> heterosexual.<br>
  1026. <strong>RELIGION:</strong> agnostic.<br>
  1027. <strong>OCCUPATION:</strong> hogwarts student.<br>
  1028.  
  1029. <blockquote><strong>RELATIONSHIPS:</strong></blockquote>
  1030.  
  1031. <strong>PARENTS:</strong> unnamed. aliases: monica <strong><em>&</em></strong> wendell wilkins.<br>
  1032. <strong>SIBLINGS:</strong> none.<br>
  1033. <strong>SIGNIFICANT OTHER(S):</strong> viktor krum, ronald weasley.<br>
  1034. <strong>CHILDREN:</strong> hugo weasley, rose weasley.<br>
  1035. <strong>CLOSEST FRIENDS:</strong> harry potter, ronald weasley.<br>
  1036. <strong>RIVALS:</strong> draco malfoy, pansy parkinson.<br>
  1037. <strong>ENEMIES:</strong> lord voldemort, death eaters.<p>
  1038.  
  1039. <blockquote><strong>PHYSICAL TRAITS:</strong></blockquote>
  1040.  
  1041. <strong>EYE COLOR:</strong> brown.<br>
  1042. <strong>HAIR COLOR:</strong> brown.<br>
  1043. <strong>HEIGHT:</strong> 5'5.<br>
  1044. <strong>WEIGHT:</strong> 117 pounds.<br>
  1045. <strong>BODY TYPE:</strong> athletic, slender.<p>
  1046.  
  1047. <blockquote><strong>PERSONALITY:</strong></blockquote>
  1048.  
  1049. <strong>MORAL ALIGNMENT:</strong> lawful good.<br>
  1050. <strong>JUNG:</strong> infj.<br>
  1051. <strong>FOUR TEMPERAMENTS:</strong> melancholic.<br>
  1052. <strong>HOGWARTS HOUSE:</strong> gryffindor.<br>
  1053. <strong>USUAL MOOD:</strong> inquisitive, curious, studious.<p>
  1054.  
  1055. <blockquote><strong>MISC:</strong></blockquote>
  1056.  
  1057. <strong>SKILLS:</strong> spell work, memory, intelligence, inventiveness.<br>
  1058. <strong>WEAKNESSES:</strong> chaotic plans, rule breaking, empathy for others.<br>
  1059. <strong>HOBBIES:</strong> studying, practicing spells, visiting hagrid, watching quidditch matches.<p>
  1060.  
  1061. <blockquote><strong>STATS:</strong></blockquote>
  1062.  
  1063. <strong>COMPASSION:</strong> 9/10<br>
  1064. <strong>EMPATHY:</strong> 10/10<br>
  1065. <strong>CREATIVITY:</strong> 8/10<br>
  1066. <strong>MENTAL FLEXIBILITY:</strong> 10/10<br>
  1067. <strong>PASSION/MOTIVATION:</strong> 9/10<br>
  1068. <strong>EDUCATION:</strong> 10/10<br>
  1069. <strong>STAMINA:</strong> 8/10<br>
  1070. <strong>PHYSICAL STRENGTH:</strong> 7/10<br>
  1071. <strong>BATTLE SKILL:</strong> 9/10<br>
  1072. <strong>RESTRAINT:</strong> 7/10<br>
  1073. <strong>AGILITY:</strong> 9/10<br>
  1074. <strong>STRATEGY: </strong>10/10<br>
  1075. <strong>TEAMWORK:</strong> 9/10
  1076.  
  1077.  
  1078. </div></div>
  1079.  
  1080. <div id="box5" class="popup_block"> <div class="scroll">
  1081. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px"></div>
  1082. <center><strong><a href="#?w=300" rel="box3" class="poplight">MAIN.</a> <a href="#?w=300" rel="box5" class="poplight">CANON.</a> <a href="#?w=300" rel="box6" class="poplight">ALTERNATE.</a></strong></center><p>
  1083.  
  1084. <center><strong>CANON VERSES.</strong></center>
  1085. <center> <img src="https://40.media.tumblr.com/f49089d32218cf587bdbc9aee1273e68/tumblr_inline_o2tmhhm0Vn1u22ohe_540.png"></center>
  1086. <p>
  1087. <center><strong>the philosopher's stone verse:
  1088. <br>
  1089. tag: ┋' ARC: I WALKED ENCHANTED — AND NOTHING HELD ME BACK. </strong>
  1090. <br>
  1091. set within the canon storyline of <strong>harry potter and the philosopher's stone</strong>. both book <strong><em>&</em></strong> movie based. during the time when hermione has just started at hogwarts school of witchcraft <strong><em>&</em></strong> wizardy. she has so far, found it difficult to make friends as her haughty attitude <strong><em>&</em></strong> already vast knowledge has been regarded as off putting. harry <strong><em>&</em></strong> ron were fast friends, but she wasn't properly a part of the trio until she took the blame for them after they saved her from a troll on halloween. they begin learning more about the philosopher's stone <strong><em>&</em></strong> nicolas flamel until they eventually, they thwart professor quirrell, whose body is being shared with lord voldemort, from stealing the stone. </center>
  1092. <p>
  1093. <center><strong>the chamber of secrets verse:
  1094. <br>
  1095. tag: ┋' ARC: I AM A FRAGMENT COMPOSED OF FRAGMENTS. MOSAIC. PASTICHE. RUIN. </strong>
  1096. <br>
  1097. set within the canon storyline of <strong>harry potter and the chamber of secrets</strong>. both book <strong><em>&</em></strong> movie based. during the time when hermione has returned for her second year at hogwarts, <strong><em>&</em></strong> now has a closer relationship with ron <strong><em>&</em></strong> harry. as the year progresses, students are beginning to be attacked by an unknown perpetrator. they are eventually told about the myth of the chamber of secrets, which is said to hold a terrible creature. the tale is that, when the heir of slytherin returns to hogwarts, the chamber will be opened, <strong><em>&</em></strong> the creature released to rid the school of students who are not purebloods. when ron's sister ginny is taken to the chamber, harry, ron, <strong><em>&</em></strong> hermione fight their way through many obstacles until harry eventually kills the basilisk as well as one of voldemort's horcruxes. </center>
  1098. <p>
  1099. <center><strong>the prisoner of azkaban verse:
  1100. <br>
  1101. tag: ┋' ARC: WITHERS AND ALTERS LIKE FLOWERS — AT THE APPEARANCE OF AUTUMN. </strong>
  1102. <br>
  1103. set within the canon storyline of <strong>harry potter and the prisoner of azkaban</strong>. both book <strong><em>&</em></strong> movie based. during hermione's third year at hogwarts, when her class load has expanded significantly. professor mcgonagall gives her a time-turner at the beginning of the year so she can successfully take all her classes. her abrupt arrivals <strong><em>&</em></strong> departures are sometimes noticed, mostly by ron. sirius black has also broken out of azkaban <strong><em>&</em></strong> they've been warned he's after harry potter. throughout the year, they also learn that sirius is harry's godfather, <strong><em>&</em></strong> betrayed harry's father, resulting in his parent's death. of course, it is later revealed that it was actually peter pettigrew who betrayed the potter's, <strong><em>&</em></strong> sirius was set up, as well as wrongfully convicted. he is captured, <strong><em>&</em></strong> scheduled to receive the dementor's kiss until harry <strong><em>&</em></strong> hermione, using hermione's time turner, are able to save him. </center>
  1104. <p>
  1105. <center><strong>the goblet of fire verse:
  1106. <br>
  1107. tag: ┋' ARC: I HAVE TO REMIND MYSELF TO BREATHE — ALMOST TO REMIND MY HEART TO BEAT! </strong>
  1108. <br>
  1109. set within the canon storyline of <strong>harry potter and the goblet of fire</strong>. both book <strong><em>&</em></strong> movie based. during hermione's fourth year at hogwarts, when the school is set to be holding the triwizard tournament. harry is mistakenly chosen as a hogwarts champion, <strong><em>&</em></strong> is forced to participate due to the goblet of fire's magical contract. hermione spends much of her time trying to help harry decipher clues, as well as forms S.P.E.W. which stands for the society for the promotion of elfish welfare. hermione also grows close to the durmstrang champion, <strong><em>&</em></strong> famous quidditch player, viktor krum. during the final challenge of the triwizard tournament, harry comes face to face with a new <strong><em>&</em></strong> vital lord voldemort. the second hogwarts champion, cedric diggory is killed by voldemort, <strong><em>&</em></strong> harry is forced to fight him — just barely escaping. </center>
  1110. <p>
  1111. <center><strong>the deathly hallows verse:
  1112. <br>
  1113. tag: ┋' ARC: WHO WAS SHE — WHO ROSE LIKE THE DAWN. FAIR AS THE MOON. CLEAR AS THE SUN. </strong>
  1114. <br>
  1115. set within the canon storyline of <strong>harry potter and the deathly hallows</strong>. both book <strong><em>&</em></strong> movie based. during the time when harry, ron <strong><em>&</em></strong> hermione don't return to hogwarts, instead heading off on their own to find <strong><em>&</em></strong> destroy all of lord voldemort's horcruxes. they face many dangers, as the ministry is now under the control of voldemort <strong><em>&</em></strong> harry, as well as anyone who is not pureblood is now in grave danger. throughout their search for the horcruxes, they also come across the legend of the deathly hallows, which hermione believes are ridiculous. the battle comes to a head at hogwarts, where all horcruxes are destroyed, as well as the piece of voldemort that has lived inside of harry. as voldemort is defeated, the death eaters are forced into hiding or captured, <strong><em>&</em></strong> all innocent wizards <strong><em>&</em></strong> witches in azkaban are set free. all is well. </center>
  1116. <p>
  1117. <center><strong>post-war verse:
  1118. <br>
  1119. tag: ┋' ARC: YOU CAN BE SOMETHING ELSE. SOMETHING DISTANT — SHARP AS THE STARS. </strong>
  1120. <br>
  1121. set after the canon storyline of <strong>harry potter and the deathly hallows</strong>. during the first few years after the war, when the wizarding community is rebuilding. hermione's first task was, of course, to find her parents, restore their memories, <strong><em>&</em></strong> bring them home. her next task was to catch up on lessons she would have been given in her seventh year at hogwarts, as she felt slighted with an unfinished education. she then started her career at the department for the regulation <strong><em>&</em></strong> control of magical creatures where she was instrumental in greatly improving life for house-elves <strong><em>&</em></strong> their ilk. after which, she moved to the department of magical law enforcement where she was a progressive voice who ensured the eradication of oppressive, pro-pureblood laws. </center>
  1122.  
  1123.  
  1124. </div></div>
  1125.  
  1126. <div id="box6" class="popup_block"> <div class="scroll">
  1127. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px"></div>
  1128.  
  1129. <center><strong><a href="#?w=300" rel="box3" class="poplight">MAIN.</a> <a href="#?w=300" rel="box5" class="poplight">CANON.</a> <a href="#?w=300" rel="box6" class="poplight">ALTERNATE.</a></strong></center><p>
  1130. <center> <img src="https://40.media.tumblr.com/e7a75bfbb5e6448fac5450b0581e3e2e/tumblr_inline_o2tmhiPMyo1u22ohe_540.png"></center>
  1131. <br>
  1132. <center><strong>ALTERNATE VERSES.</strong></center>
  1133. <p>
  1134. <center><strong>ALTERNATE AND CROSSOVER VERSES WILL BE PLACED HERE</strong></center>
  1135.  
  1136.  
  1137. </div></div>
  1138.  
  1139. <div id="box7" class="popup_block"> <div class="scroll">
  1140. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px"></div>
  1141.  
  1142. <center><strong><a href="#?w=300" rel="box2" class="poplight">RULES.</a> <a href="#?w=300" rel="box7" class="poplight">EXCLUSIVES.</a> </strong></center><p>
  1143. <center> <img src="https://41.media.tumblr.com/591ecc268f5d2f035686b0be1f5f9f00/tumblr_inline_o2twesCO7B1u22ohe_540.png"></center>
  1144. <br>
  1145. <center><strong>EXCLUSIVES LIST.</strong></center>
  1146. <p>
  1147. <center>pansy parkinson: <em><a href="http://volatilevenom.tumblr.com/">volatilevenom</a>.</em> <u>strictly</u> exclusive.</center>
  1148.  
  1149.  
  1150. </div></div>
  1151.  
  1152.  
  1153. </div></div></div></div></div></div></div></div></div></div>
  1154.  
  1155. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</div> </div>
  1156.  
  1157.  
  1158. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement