Advertisement
Kawaii-Lau

The Strongest [Club Code]

Aug 2nd, 2020 (edited)
924
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 27.84 KB | None | 0 0
  1. <!--
  2.  
  3.   ╔═══ -ˋˏ *.·:·.⟐.·:·.* ˎˊ- ═══╗
  4.    Thank you for using my code!
  5.   ╚═══ -ˋˏ *.·:·.⟐.·:·.* ˎˊ- ═══╝
  6. Rules to Follow:
  7.  
  8. ✶ Do not EVER delete or remove the credits of the coder or claim this code as your own.
  9. ✶ Do not redistribute this code, no matter how much you edited it as a base or otherwise!
  10. ✶ If you need any help in fixing codes, contact me on Discord (Kawaii-lau#6316).
  11. ✶ If you like to share this code, send to your friends the link of my blog, kawaii-lau.tumblr.com , and support me!
  12.  
  13. If you like a custom code, check out my blog to see if requests are open!
  14.  
  15.  
  16.         ╔═══ -ˋˏ *.·:·.⟐.·:·.* ˎˊ- ═══╗
  17. HEADER FONT: https://fontmeme.com/fonts/angel-tears-font/
  18.         ╚═══ -ˋˏ *.·:·.⟐.·:·.* ˎˊ- ═══╝
  19.  
  20.  
  21. XOXO, Lauren.
  22.  
  23.     ╔═══ -ˋˏ *.·:·.⟐.·:·.* ˎˊ- ═══╗
  24.       2020 © Coding by Kawaii-Lau
  25.     ╚═══ -ˋˏ *.·:·.⟐.·:·.* ˎˊ- ═══╝
  26.  
  27. -->
  28.  
  29. <style>
  30. :root {
  31.   --header-color: #373639; /* HEADER COLOR */
  32.   --header-background: URL(LINK); /* HEADER COLOR (OPTIONAL) */
  33.   --main-color: #fff; /* MAIN BOX COLOR */
  34.   --main-background: url(https://i.pinimg.com/564x/ae/19/71/ae19716f146c6127a6cb5e23bc7ee1bf.jpg); /* MAIN BOX BACKGROUND (OPTIONAL) */
  35.  
  36.   --button-color:#eee; /*BUTTON COLOR  */
  37.   --button-icon:#0e0e0e; /* BUTTON ICON COLOR */
  38.  
  39.   --box-outer-color:rgba(255, 255, 255, 0.5); /* FADE OUTER COLOR OF CONTENT BOX */
  40.   --box-inner-color:white; /* SOLID INNER COLOR OF CONTENT BOX */
  41.   --content-box-border:1px solid white; /* CONTENT BOX BORDER */
  42.  
  43.   --main-font-size:14px; /* FONT SIZE */
  44.   --main-font-family:'Cormorant Garamond', serif; /* FONT FAMILY */
  45.   --main-font-color:black; /* FONT COLOR */
  46. }
  47.  
  48. ::-webkit-scrollbar {
  49.   width: 6px;
  50.   background-color: var(--header-color);
  51. }
  52.  
  53. ::-webkit-scrollbar-thumb {
  54.   background-color: #a0a2af;
  55. }
  56.  
  57. .main-box {
  58.   width: 650px;
  59.   height: 800px;
  60.   margin: 0px auto;
  61.   background-color: var(--main-color);
  62.   background-image: var(--main-background);
  63.   background-position: center;
  64.   background-size: 100% 100%;
  65.   overflow: auto;
  66.   font-family:var(--main-font-family);
  67.   color:var(--main-font-color);
  68. }
  69.  
  70. .header {
  71.   -webkit-mask-image: url(https://i.imgur.com/AWvlVDd.png);
  72.   -webkit-mask-size: 100% 100%;
  73.   width: 100%;
  74.   height: 100px;
  75.   background-color: var(--header-color);
  76.   background-image: var(--header-background);
  77.   background-position: top center;
  78.   background-size: 100% auto;
  79.   position: sticky;
  80.   top: 0px;
  81.   z-index: 5;
  82. }
  83.  
  84. .content {
  85.   display: none;
  86. }
  87.  
  88. @keyframes fade {
  89.   from {opacity: 0.5;}
  90.   to {opacity: 1;}
  91. }
  92.  
  93. .fade {
  94.   animation: fade 1s;
  95. }
  96.  
  97. /* ------------------ */
  98.  
  99. .nav-tab {
  100.   height: 100px;
  101.   position: sticky;
  102.   margin-top: -100px;
  103.   z-index: 7;
  104.   top: 0px;
  105. }
  106.  
  107. .hiddenbuttons {
  108.   transition: 1s ease;
  109. }
  110.  
  111. button {
  112.   padding: 5px;
  113.   border: none;
  114.   outline: none;
  115.   background: var(--button-color);
  116.   border-radius: 100%;
  117.   box-shadow: 3px 3px 10px rgba(100, 100, 100, 0.2);
  118.   transition: 1s ease;
  119.   position: absolute;
  120.   cursor: pointer;
  121.   margin-top: 180px;
  122.   margin-left: 10px;
  123. }
  124.  
  125. button:hover {
  126.   background: var(--button-icon);
  127. }
  128.  
  129. button > div:first-child {
  130.   -webkit-mask-size: 100% 100%;
  131.   width: 40px;
  132.   height: 40px;
  133.   background-color: var(--button-icon);
  134.   transition: 1s ease;
  135. }
  136.  
  137. button:hover div:first-child {
  138.   background: var(--button-color);
  139. }
  140.  
  141. .tooltip {
  142.   position: absolute;
  143.   padding: 10px;
  144.   font-size: 12px;
  145.   background: white;
  146.   box-shadow: 3px 3px 10px rgba(100, 100, 100, 1);
  147.   max-width: 200px;
  148.   margin-top: 10px;
  149.   margin-left: 40px;
  150.   display: none;
  151. }
  152.  
  153. button:hover .tooltip {
  154.   display: block;
  155.   animation: appear 1s ease;
  156. }
  157.  
  158. @keyframes appear {
  159.   0% {opacity: 0;}
  160.   30% {opacity: 0;}
  161.   100% {opacity: 1;}
  162. }
  163.  
  164. .nav-tab:hover .hiddenbuttons button:first-child {
  165.   z-index: 15;
  166. }
  167.  
  168. .nav-tab:hover .hiddenbuttons button:nth-child(2) {
  169.   margin-top: 150px;
  170.   margin-left: 100px;
  171.   z-index: 14;
  172. }
  173. .nav-tab:hover .hiddenbuttons button:nth-child(3) {
  174.   margin-top: 120px;
  175.   margin-left: 190px;
  176.   z-index: 13;
  177. }
  178. .nav-tab:hover .hiddenbuttons button:nth-child(4) {
  179.   margin-top: 100px;
  180.   margin-left: 280px;
  181.   z-index: 12;
  182. }
  183. .nav-tab:hover .hiddenbuttons button:nth-child(5) {
  184.   margin-top: 70px;
  185.   margin-left: 370px;
  186.   z-index: 11;
  187. }
  188.  
  189. /* ------------------ */
  190.  
  191. .content {
  192.   padding: 20px;
  193. }
  194.  
  195. .content-box {
  196.   padding: 30px;
  197.   background: var(--box-outer-color);
  198.   border: var(--content-box-border);
  199.   margin: 20px 0px;
  200. }
  201.  
  202. .text {
  203.   padding: 10px;
  204.   font-size: var(--main-font-size);
  205.   text-align: justify;
  206.   background: var(--box-inner-color);
  207. }
  208.  
  209. footer {
  210.   -webkit-mask-image: url(https://i.imgur.com/AWvlVDd.png);
  211.   -webkit-mask-size: 100% 100%;
  212.   transform: rotate(180deg);
  213.   width: 100%;
  214.   height: 100px;
  215.   background-color: var(--header-color);
  216.   background-image: var(--header-background);
  217.   background-position: bottom center;
  218.   background-size: 100% auto;
  219.   position: sticky;
  220.   bottom: 0px;
  221.   z-index: 5;
  222. }
  223.  
  224. </style>
  225. <script>
  226. function openInfo(evt, page) {
  227.   var i, tabcontent, tablinks;
  228.   content = document.getElementsByClassName("content");
  229.   for (i = 0; i < content.length; i++) {
  230.    content[i].style.display = "none";
  231.  }
  232.  tablinks = document.getElementsByClassName("tablinks");
  233.  for (i = 0; i < tablinks.length; i++) {
  234.    tablinks[i].className = tablinks[i].className.replace(" active", "");
  235.  }
  236.  document.getElementById(page).style.display = "block";
  237.  evt.currentTarget.className += " active";
  238. }
  239. {
  240. }
  241.  
  242. </script>
  243.  
  244. <body style="background-color:#111">
  245.   <div class="main-box">
  246.  
  247.   <!-- HEADER -->
  248.     <div class="header"></div>
  249.  
  250.  
  251.     <nav class="nav-tab">
  252.       <div class="hiddenbuttons">
  253.         <div style="display:flex;flex-direction:row;align-items:center;">
  254.        
  255.         <!-- BUTTONS -->
  256.           <button onclick="openInfo(event, 'home')">
  257.             <div style="-webkit-mask-image:url(https://image.flaticon.com/icons/svg/786/786328.svg)"></div>
  258.           <!-- BUTTON NAME -->
  259.             <div class="tooltip">Home</div>
  260.           </button>
  261.  
  262.         <!-- BUTTONS -->
  263.           <button onclick="openInfo(event, 'p2')">
  264.             <div style="-webkit-mask-image:url(https://image.flaticon.com/icons/svg/786/786328.svg)"></div>
  265.           <!-- BUTTON NAME -->
  266.             <div class="tooltip">Teams</div>
  267.           </button>
  268.  
  269.         <!-- BUTTONS -->
  270.           <button onclick="openInfo(event, 'p3')">
  271.             <div style="-webkit-mask-image:url(https://image.flaticon.com/icons/svg/786/786328.svg)"></div>
  272.           <!-- BUTTON NAME -->
  273.             <div class="tooltip">Columns</div>
  274.           </button>
  275.  
  276.         <!-- BUTTONS -->
  277.           <button onclick="openInfo(event, 'p4')">
  278.             <div style="-webkit-mask-image:url(https://image.flaticon.com/icons/svg/786/786328.svg)"></div>
  279.           <!-- BUTTON NAME -->
  280.             <div class="tooltip">Events</div>
  281.           </button>
  282.  
  283.         <!-- BUTTONS -->
  284.           <button onclick="openInfo(event, 'p5')">
  285.             <div style="-webkit-mask-image:url(https://image.flaticon.com/icons/svg/786/786328.svg)"></div>
  286.           <!-- BUTTON NAME -->
  287.             <div class="tooltip">Site Guide</div>
  288.           </button>
  289.  
  290.         </div>
  291.       </div>
  292.     </nav>
  293.  
  294.     <!-- ◈ HOME ◈ -->
  295.     <div class="content fade" id="home" style="display:block;">
  296.       <div class="content-box">
  297.         <div class="text">
  298.  
  299.           <center><img src="https://fontmeme.com/permalink/200802/ac259d7d3a754c4ae3abf02ffcb10f46.png" style="width:60%" /><br>
  300.  
  301.             <img src="https://24.media.tumblr.com/623d90afa36b06aa98450cd32694ed3a/tumblr_n3cwuq7P831tvm3ovo1_500.gif" /><br><br>
  302.             <img src="https://i.imgur.com/zXmcYcV.png" style="width:40%" /></center><br>
  303.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Defence Against the Dark Arts. Herbology. Astronomy. Study of Ancient Runes. Arithmancy. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra. Aguamenti. Crucio. Morsmordre. Rictusempra. Furnunculus. Petrificus Totalus. Aparecium. Arresto Momentum. Ascendio. Harry Potter. The Walking Dead. Game of Thrones. Percy Jackson and the Olympians. The Mortal Instruments. The Infernal Devices. The Shadowhunters. Star Wars. The Vampire Diaries. Eragon. Inheritance Cycle. Supernatural. Once Upon A Time. The Maze Runner. Dungeons and Dragons. Fantasy and Legends. DC universe. Avatar: the Last Airbender. Wings of Fire. The Chilling Adventures of Sabrina. Throne of Glass. A Court of Thorns and Roses. Lord of the Rights. X-Men. The Narnia Chronicles. Western world in 1700's. H.P Lovecraft. Rome and 300 BC. The 100. a lorem a tortor scelerisque rhoncus. Nunc posuere augue non nunc hendrerit, id mollis nisi rhoncus. Mauris tincidunt tincidunt mollis. Fusce tempus dolor eu magna elementum, quis faucibus velit sodales.
  304.         </div>
  305.       </div><!-- END OF CONTENT BOX -->
  306.       <br>
  307.       <div class="content-box">
  308.         <div class="text">
  309.           Lorem impsum dolor varom, ab imo pectore. Potter. Walkers. Thrones. Olympians. Nephilim. Galaxies. Mystic Falls. Alagaesia. Supernaturals. Fairy Tales. Gladers United. Forgotten Dungeons. Legends. Meta Humans. Bending Arts. Jade Mountain. Unseen Arts. High Fae. Middle Earth. Mutants. Narnia Kingdom. Wild West. Eldritch County. Gladiators. Survival Tribes. Coding. HTML &amp; CSS. Gryffindor. Hufflepuff. Ravenclaw. Slytherin. WoX community. Site Bulletin Board. Coding Help. Academia de Villainary. Signature Factory. Discord. Fandoms. Books. Shows. Movies. Fan casts. Dream casts. Tessisamess. w3schools. liveweave. cssdesk. Minister of Magic. Headmaster. Head of House. The Management Team. Chief Editor. Professors/Teachers. Prefects. Journalists. Assistant Teachers. Plot Team. Social-Media Team. Librarian. Backstory Team. Artist. Party Team. Normal User. <br><br>
  310.  
  311.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Defence Against the Dark Arts. Herbology. Astronomy. Study of Ancient Runes. Arithmancy. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra. Aguamenti. Crucio. Morsmordre. Rictusempra. Furnunculus. Petrificus Totalus. Aparecium. Arresto Momentum. Ascendio. Harry Potter. The Walking Dead. Game of Thrones. Percy Jackson and the Olympians. The Mortal Instruments. The Infernal Devices. The Shadowhunters. Star Wars. The Vampire Diaries. Eragon. Inheritance Cycle. Supernatural. Once Upon A Time. The Maze Runner. Dungeons and Dragons. Fantasy and Legends. DC universe. Avatar: the Last Airbender. Wings of Fire. The Chilling Adventures of Sabrina. Throne of Glass. A Court of Thorns and Roses. Lord of the Rights. X-Men. The Narnia Chronicles. Western world in 1700's. H.P Lovecraft. Rome and 300 BC. The 100. a lorem a tortor scelerisque rhoncus. Nunc posuere augue non nunc hendrerit, id mollis nisi rhoncus. Mauris tincidunt tincidunt mollis. Fusce tempus dolor eu magna elementum, quis faucibus velit sodales.
  312.         </div>
  313.       </div><!-- END OF CONTENT BOX -->
  314.     </div><!-- END OF PAGE "HOME" -->
  315.  
  316.     <!-- ◈ TEAMS ◈ -->
  317.     <div class="content fade" id="p2">
  318.       <div class="content-box">
  319.         <div class="text">
  320.           <center>
  321.             <img src="https://fontmeme.com/permalink/200802/7dd67c7dbdc3ed0b5ef7765911c2674c.png" style="width:70%" /><br><br>
  322.  
  323.             <img src="https://media1.tenor.com/images/34eaa4a3633f78ec157ff00ee324991c/tenor.gif?itemid=9981558" style="width:100%" /><br><br>
  324.  
  325.             <img src="https://i.imgur.com/zXmcYcV.png" style="width:40%" /></center><br><br>
  326.  
  327.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Defence Against the Dark Arts. Herbology. Astronomy. Study of Ancient Runes. Arithmancy. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra. Aguamenti. Crucio. Morsmordre. Rictusempra. Furnunculus. Petrificus Totalus. Aparecium. Arresto Momentum. Ascendio. Harry Potter. The Walking Dead. Game of Thrones. Percy Jackson and the Olympians. The Mortal Instruments. The Infernal Devices. The Shadowhunters. Star Wars. The Vampire Diaries. Eragon. Inheritance Cycle. Supernatural. Once Upon A Time. The Maze Runner. Dungeons and Dragons. Fantasy and Legends. DC universe. Avatar: the Last Airbender. Wings of Fire. The Chilling Adventures of Sabrina. Throne of Glass. A Court of Thorns and Roses. Lord of the Rights. X-Men. The Narnia Chronicles. Western world in 1700's. H.P Lovecraft. Rome and 300 BC. The 100. a lorem a tortor scelerisque rhoncus. Nunc posuere augue non nunc hendrerit, id mollis nisi rhoncus. Mauris tincidunt tincidunt mollis. Fusce tempus dolor eu magna elementum, quis faucibus velit sodales.
  328.         </div>
  329.       </div><!-- END OF CONTENT BOX -->
  330.  
  331.       <div class="content-box">
  332.         <div class="text">
  333.           Lorem impsum dolor varom, ab imo pectore. Potter. Walkers. Thrones. Olympians. Nephilim. Galaxies. Mystic Falls. Alagaesia. Supernaturals. Fairy Tales. Gladers United. Forgotten Dungeons. Legends. Meta Humans. Bending Arts. Jade Mountain. Unseen Arts. High Fae. Middle Earth. Mutants. Narnia Kingdom. Wild West. Eldritch County. Gladiators. Survival Tribes. Coding. HTML &amp; CSS. Gryffindor. Hufflepuff. Ravenclaw. Slytherin. WoX community. Site Bulletin Board. Coding Help. Academia de Villainary. Signature Factory. Discord. Fandoms. Books. Shows. Movies. Fan casts. Dream casts. Tessisamess. w3schools. liveweave. cssdesk. Minister of Magic. Headmaster. Head of House. The Management Team. Chief Editor. Professors/Teachers. Prefects. Journalists. Assistant Teachers. Plot Team. Social-Media Team. Librarian. Backstory Team. Artist. Party Team. Normal User. <br><br>
  334.  
  335.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Defence Against the Dark Arts. Herbology. Astronomy. Study of Ancient Runes. Arithmancy. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra. Aguamenti. Crucio. Morsmordre. Rictusempra. Furnunculus. Petrificus Totalus. Aparecium. Arresto Momentum. Ascendio. Harry Potter. The Walking Dead. Game of Thrones. Percy Jackson and the Olympians. The Mortal Instruments. The Infernal Devices. The Shadowhunters. Star Wars. The Vampire Diaries. Eragon. Inheritance Cycle. Supernatural. Once Upon A Time. The Maze Runner. Dungeons and Dragons. Fantasy and Legends. DC universe. Avatar: the Last Airbender. Wings of Fire. The Chilling Adventures of Sabrina. Throne of Glass. A Court of Thorns and Roses. Lord of the Rights. X-Men. The Narnia Chronicles. Western world in 1700's. H.P Lovecraft. Rome and 300 BC. The 100. a lorem a tortor scelerisque rhoncus. Nunc posuere augue non nunc hendrerit, id mollis nisi rhoncus. Mauris tincidunt tincidunt mollis. Fusce tempus dolor eu magna elementum, quis faucibus velit sodales.
  336.         </div>
  337.       </div><!-- END OF CONTENT BOX -->
  338.  
  339.     </div><!-- END OF PAGE 2 -->
  340.  
  341.     <!-- ◈ COLUMNS ◈ -->
  342.     <div class="content fade" id="p3">
  343.       <div class="content-box">
  344.         <div class="text">
  345.           <center>
  346.             <img src="https://i.imgur.com/zXmcYcV.png" style="width:40%" />
  347.             <br><br>
  348.             <img src="https://fontmeme.com/permalink/200802/debef32a48ffc1d0e4e8e09be8fdefff.png" style="width:80%;" /><br><br>
  349.             <img src="https://i.imgur.com/zXmcYcV.png" style="width:40%" />
  350.           </center><br><br>
  351.           Lorem impsum dolor varom, ab imo pectore. Potter. Walkers. Thrones. Olympians. Nephilim. Galaxies. Mystic Falls. Alagaesia. Supernaturals. Fairy Tales. Gladers United. Forgotten Dungeons. Legends. Meta Humans. Bending Arts. Jade Mountain. Unseen Arts. High Fae. Middle Earth. Mutants. Narnia Kingdom. Wild West. Eldritch County. Gladiators. Survival Tribes. Coding. HTML &amp; CSS. Gryffindor. Hufflepuff. Ravenclaw. Slytherin. WoX community. Site Bulletin Board. Coding Help. Academia de Villainary. Signature Factory. Discord. Fandoms. Books. Shows. Movies. Fan casts. Dream casts. Tessisamess. w3schools. liveweave. cssdesk. Minister of Magic. Headmaster. Head of House. The Management Team. Chief Editor. Professors/Teachers. Prefects. Journalists. Assistant Teachers. Plot Team. Social-Media Team. Librarian. Backstory Team. Artist. Party Team. Normal User. <br><br>
  352.  
  353.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Defence Against the Dark Arts. Herbology. Astronomy. Study of Ancient Runes. Arithmancy. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra. Aguamenti. Crucio. Morsmordre. Rictusempra. Furnunculus. Petrificus Totalus. Aparecium. Arresto Momentum. Ascendio. Harry Potter. The Walking Dead. Game of Thrones. Percy Jackson and the Olympians. The Mortal Instruments. The Infernal Devices. The Shadowhunters. Star Wars. The Vampire Diaries. Eragon. Inheritance Cycle. Supernatural. Once Upon A Time. The Maze Runner. Dungeons and Dragons. Fantasy and Legends. DC universe. Avatar: the Last Airbender. Wings of Fire. The Chilling Adventures of Sabrina. Throne of Glass. A Court of Thorns and Roses. Lord of the Rights. X-Men. The Narnia Chronicles. Western world in 1700's. H.P Lovecraft. Rome and 300 BC. The 100. a lorem a tortor scelerisque rhoncus. Nunc posuere augue non nunc hendrerit, id mollis nisi rhoncus. Mauris tincidunt tincidunt mollis. Fusce tempus dolor eu magna elementum, quis faucibus velit sodales.
  354.         </div>
  355.       </div><!-- END OF CONTENT BOX -->
  356.  
  357.       <div class="content-box">
  358.         <div class="text">
  359.           Lorem impsum dolor varom, ab imo pectore. Potter. Walkers. Thrones. Olympians. Nephilim. Galaxies. Mystic Falls. Alagaesia. Supernaturals. Fairy Tales. Gladers United. Forgotten Dungeons. Legends. Meta Humans. Bending Arts. Jade Mountain. Unseen Arts. High Fae. Middle Earth. Mutants. Narnia Kingdom. Wild West. Eldritch County. Gladiators. Survival Tribes. Coding. HTML &amp; CSS. Gryffindor. Hufflepuff. Ravenclaw. Slytherin. WoX community. Site Bulletin Board. Coding Help. Academia de Villainary. Signature Factory. Discord. Fandoms. Books. Shows. Movies. Fan casts. Dream casts. Tessisamess. w3schools. liveweave. cssdesk. Minister of Magic. Headmaster. Head of House. The Management Team. Chief Editor. Professors/Teachers. Prefects. Journalists. Assistant Teachers. Plot Team. Social-Media Team. Librarian. Backstory Team. Artist. Party Team. Normal User. <br><br>
  360.  
  361.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Defence Against the Dark Arts. Herbology. Astronomy. Study of Ancient Runes. Arithmancy. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra. Aguamenti. Crucio. Morsmordre. Rictusempra. Furnunculus. Petrificus Totalus. Aparecium. Arresto Momentum. Ascendio. Harry Potter. The Walking Dead. Game of Thrones. Percy Jackson and the Olympians. The Mortal Instruments. The Infernal Devices. The Shadowhunters. Star Wars. The Vampire Diaries. Eragon. Inheritance Cycle. Supernatural. Once Upon A Time. The Maze Runner. Dungeons and Dragons. Fantasy and Legends. DC universe. Avatar: the Last Airbender. Wings of Fire. The Chilling Adventures of Sabrina. Throne of Glass. A Court of Thorns and Roses. Lord of the Rights. X-Men. The Narnia Chronicles. Western world in 1700's. H.P Lovecraft. Rome and 300 BC. The 100. a lorem a tortor scelerisque rhoncus. Nunc posuere augue non nunc hendrerit, id mollis nisi rhoncus. Mauris tincidunt tincidunt mollis. Fusce tempus dolor eu magna elementum, quis faucibus velit sodales.
  362.         </div>
  363.       </div><!-- END OF CONTENT BOX -->
  364.  
  365.     </div><!-- END OF PAGE 3 -->
  366.  
  367.     <!-- ◈ EVENTS ◈ -->
  368.     <div class="content fade" id="p4">
  369.       <div class="content-box">
  370.         <div class="text">
  371.           <center><img src="https://i.imgur.com/zXmcYcV.png" style="width:70%" /></center><br><br>
  372.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra. Aguamenti. Crucio. Morsmordre. Rictusempra. Furnunculus. Petrificus Totalus. Rome and 300 BC. The 100. a lorem a tortor scelerisque rhoncus. Nunc posuere augue non nunc hendrerit, id mollis nisi rhoncus. Mauris tincidunt tincidunt mollis. Fusce tempus dolor eu magna elementum, quis faucibus velit sodales.
  373.         </div>
  374.       </div><!-- END OF CONTENT BOX -->
  375.  
  376.       <div class="content-box">
  377.         <div class="text">
  378.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Defence Against the Dark Arts. Herbology. Astronomy. Study of Ancient Runes. Arithmancy. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra. Aguamenti. Crucio. Morsmordre. Rictusempra. Furnunculus. Petrificus Totalus. Aparecium. Arresto Momentum. Ascendio. Harry Potter. The Walking Dead. Game of Thrones.
  379.         </div>
  380.       </div><!-- END OF CONTENT BOX -->
  381.  
  382.       <div class="content-box">
  383.         <div class="text">
  384.           Lorem impsum dolor varom, ab imo pectore. Potter. Walkers. Thrones. Olympians. Nephilim. Galaxies. Mystic Falls. Alagaesia. Supernaturals. Fairy Tales. Gladers United. Forgotten Dungeons. Legends. Meta Humans. Bending Arts. Jade Mountain. Unseen Arts. High Fae. Middle Earth. Mutants. Narnia Kingdom. Wild West. Eldritch County. Gladiators. <br><br>
  385.  
  386.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Defence Against the Dark Arts. Herbology. Astronomy. Study of Ancient Runes. Arithmancy. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra.
  387.         </div>
  388.       </div><!-- END OF CONTENT BOX -->
  389.  
  390.     </div><!-- END OF PAGE 4 -->
  391.  
  392.     <!-- ◈ SITE GUIDE ◈ -->
  393.     <div class="content fade" id="p5">
  394.       <div class="content-box">
  395.         <div class="text">
  396.          
  397.           Lorem impsum dolor varom, ab imo pectore. Potter. Walkers. Thrones. Olympians. Nephilim. Galaxies. Mystic Falls. Alagaesia. Supernaturals. Fairy Tales. Gladers United. Forgotten Dungeons. Legends. Meta Humans. Bending Arts. Jade Mountain. Unseen Arts. High Fae. Middle Earth. Mutants. Narnia Kingdom. Wild West. Eldritch County. Gladiators. Survival Tribes. Coding. HTML &amp; CSS. Gryffindor. Hufflepuff. Ravenclaw. Slytherin. WoX community. Site Bulletin Board. Coding Help. Academia de Villainary. Signature Factory. Discord. Fandoms. Books. Shows. Movies. Fan casts. Dream casts. Tessisamess. w3schools. liveweave. cssdesk. Minister of Magic. Headmaster. Head of House. The Management Team. Chief Editor. Professors/Teachers. Prefects. Journalists. Assistant Teachers. Plot Team. Social-Media Team. Librarian. Backstory Team. Artist. Party Team. Normal User. <br><br>
  398.  
  399.          <center><img src="https://i.imgur.com/zXmcYcV.png" style="width:70%" /></center><br><br>
  400.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Defence Against the Dark Arts. Herbology. Astronomy. Study of Ancient Runes. Arithmancy. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra. Aguamenti. Crucio. Morsmordre. Rictusempra. Furnunculus. Petrificus Totalus. Aparecium. Arresto Momentum. Ascendio. Harry Potter. The Walking Dead. Game of Thrones. Percy Jackson and the Olympians. The Mortal Instruments. The Infernal Devices. The Shadowhunters. Star Wars. The Vampire Diaries. Eragon. Inheritance Cycle. Supernatural. Once Upon A Time. The Maze Runner. Dungeons and Dragons. Fantasy and Legends. DC universe. Avatar: the Last Airbender. Wings of Fire. The Chilling Adventures of Sabrina. Throne of Glass. A Court of Thorns and Roses. Lord of the Rights. X-Men. The Narnia Chronicles. Western world in 1700's. H.P Lovecraft. Rome and 300 BC. The 100. a lorem a tortor scelerisque rhoncus. Nunc posuere augue non nunc hendrerit, id mollis nisi rhoncus. Mauris tincidunt tincidunt mollis. Fusce tempus dolor eu magna elementum, quis faucibus velit sodales.
  401.         </div>
  402.       </div><!-- END OF CONTENT BOX -->
  403.  
  404.       <div class="content-box">
  405.         <div class="text">
  406.           Lorem impsum dolor varom, ab imo pectore. Potter. Walkers. Thrones. Olympians. Nephilim. Galaxies. Mystic Falls. Alagaesia. Supernaturals. Fairy Tales. Gladers United. Forgotten Dungeons. Legends. Meta Humans. Bending Arts. Jade Mountain. Unseen Arts. High Fae. Middle Earth. Mutants. Narnia Kingdom. Wild West. Eldritch County. Gladiators. Survival Tribes. Coding. HTML &amp; CSS. Gryffindor. Hufflepuff. Ravenclaw. Slytherin. WoX community. Site Bulletin Board. Coding Help. Academia de Villainary. Signature Factory. Discord. Fandoms. Books. Shows. Movies. Fan casts. Dream casts. Tessisamess. w3schools. liveweave. cssdesk. Minister of Magic. Headmaster. Head of House. The Management Team. Chief Editor. Professors/Teachers. Prefects. Journalists. Assistant Teachers. Plot Team. Social-Media Team. Librarian. Backstory Team. Artist. Party Team. Normal User. <br><br>
  407.  
  408.           Profile Text. Backstory. Clubs. Books. Lessons. Course Overviews. Examinations. Lexicon. Wallposts. Charms. Potions. Transfiguration. History of Magic. Defence Against the Dark Arts. Herbology. Astronomy. Study of Ancient Runes. Arithmancy. Flying. Care of Magical Creatures. Divination. Apparition. Magical legends and tales. Music. Lumos. Alohamora. Colloportus. Accio coffee. Avada Kedavra. Aguamenti. Crucio. Morsmordre. Rictusempra. Furnunculus. Petrificus Totalus. Aparecium. Arresto Momentum. Ascendio. Harry Potter. The Walking Dead. Game of Thrones. Percy Jackson and the Olympians. The Mortal Instruments. The Infernal Devices. The Shadowhunters. Star Wars. The Vampire Diaries. Eragon. Inheritance Cycle. Supernatural. Once Upon A Time. The Maze Runner. Dungeons and Dragons. Fantasy and Legends. DC universe. Avatar: the Last Airbender. Wings of Fire. The Chilling Adventures of Sabrina. Throne of Glass. A Court of Thorns and Roses. Lord of the Rights. X-Men. The Narnia Chronicles. Western world in 1700's. H.P Lovecraft. Rome and 300 BC. The 100. a lorem a tortor scelerisque rhoncus. Nunc posuere augue non nunc hendrerit, id mollis nisi rhoncus. Mauris tincidunt tincidunt mollis. Fusce tempus dolor eu magna elementum, quis faucibus velit sodales.
  409.         </div>
  410.       </div><!-- END OF CONTENT BOX -->
  411.  
  412.     </div> <!-- END OF PAGE 5 -->
  413.  
  414.     <footer>
  415.       <div style="transform:rotate(180deg);text-align:right;padding:20px 30px;font-size:15px;">
  416.         <b>&copy; Coding by <a href="https://kawaii-lau.tumblr.com" target="_blank" style="text-decoration:none;color:#E52C2C">Kawaii-Lau</a></b>
  417.       </div>
  418.     </footer>
  419.   </div>
  420. </body>
  421.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement