Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--------------------- PLEASE SEE HERE FOR MY CODE RULES: https://toyhou.se/12931952.bonus-content/17036656.-06-code-rules ---------------------
- Default Colours
- -Orange: #E85324
- -Light Orange : #532202
- -Text White: #FFFFFF
- -Background Color: #3D122E
- -Link Colour: #5BC0DE
- Thank you for reading!
- Crispin
- -->
- <!-------------------------------------------------- START BACKGROUND COLOUR & IMAGE -------------------------------------------------->
- <div class="card rounded-0 border-0 col-lg-10 offset-lg-2 col-md-9 offset-md-3 p-0" style="position:fixed; bottom:0; top:0; left:0; z-index:-1; background-color:#3D122E;">
- </div>
- <div style="background-image:url(https://media.discordapp.net/attachments/917542533930823690/996466133202907206/unknown.png?width=574&height=578); background-size:cover; background-position:top-center; overflow:auto;" class="card-block">
- <div class="pb-3">
- <a href="https://toyhou.se/2108365.-resources/10613944.-dividers#35571013">
- <img src="https://f2.toyhou.se/file/f2-toyhou-se/images/35571013_OKTdBHRiFuWJcTS.png">
- </a>
- </div>
- <!-------------------------------------------------- END BACKGROUND COLOUR & IMAGE -------------------------------------------------->
- <div class="tab-content;"><!-- This sets up the box you're writing in. I suggest not fiddling this. -->
- <!--------------------- START OF BUTTONS --------------------->
- <!-- Now this here is an unordered list. While it may not look like a traditional bulletpointed list on the actual code, in terms of technicality it basically is.-->
- <ul class="nav nav-tabs card-header-tabs row pl-4 m-0" style="font-size:16px; border:8px;">
- <!-- Each one of these <li> tags is a list item- Or button if you prefer. nav-item sets the code to be a navigation item, and m-0 means it has no margins. (space to the left, right, top or bottom of it.) If you increase the 0 in the margins, space will appear between the buttons! nav-link btn btn is a bootstrap thing I wouldn't reccomend fiddling with, same with data-toggle=pill. href="#one" is actually important. As you can see, each button has a different number. One, two, three, etc. If you want to add more buttons, I'd reccomend going from seven up. You don't have to, but it keeps things simple. style is where all the fun, customiseable stuff is. You can edit that as freely as you want, it's all linked to the text inside the button and the colours the button uses and the border and stuff. Aside from that, that's everything you need to know about how the buttons work.-->
- <li class="md-2"><a class="nav-link btn btn px-5" data-toggle="pill" href="#one" style="color:#E85324; font-family:'comic sans ms'; font-size:1rem; background:#532202; border:6px #E85324 solid; border-radius:0px">About</a></li>
- <li class="md-2"><a class="nav-link btn btn px-5" data-toggle="pill" href="#two" style="color:#E85324; font-family:'comic sans ms'; font-size:1rem; background:#532202; border:6px #E85324 solid; border-radius:0px">Lore</a></li>
- <li class="md-2"><a class="nav-link btn btn px-5" data-toggle="pill" href="#three" style="color:#E85324; font-family:'comic sans ms'; font-size:1rem; background:#532202; border:6px #E85324 solid; border-radius:0px">Design</a></li>
- <li class="md-2"><a class="nav-link btn btn px-5" data-toggle="pill" href="#four" style="color:#E85324; font-family:'comic sans ms'; font-size:1rem; background:#532202; border:6px #E85324 solid; border-radius:0px">Relationships</a></li>
- <li class="md-2"><a class="nav-link btn btn px-5" data-toggle="pill" href="#five" style="color:#E85324; font-family:'comic sans ms'; font-size:1rem; background:#532202; border:6px #E85324 solid; border-radius:0px">Trivia</a></li>
- <li class="md-2"><a class="nav-link btn btn px-5" data-toggle="pill" href="#six" style="color:#532202; font-family:'comic sans ms'; font-size:1rem; background:#532202; border:6px #E85324 solid; border-radius:0px">Button Button Button Button</a></li>
- </ul><!-- Ends the button list -->
- <!--------------------- END OF BUTTONS --------------------->
- <!-------------------------------------------------------- START CONTENT -------------------------------------------------------->
- <div class="row p-3 tab-pane fade show active"> <!-- Sets up the content of the playlist, rewards section, and info section. Do not touch this ELLIOT. -->
- <!-------------------------------------------------------- START PLAYLIST & REWARDS ------------------------------------------------------>
- <div class="col-12 col-lg-4"><!-- Sets up the Playlist & Rewards Area. I wouldn't reccomend messing with this. -->
- <!------------------------------------------------------------ START PLAYLIST ---------------------------------------------------------->
- <!-- Okay! So! I'm going to explain what all the stuff in div class means now since I promised I would earlier. A card is a bootstrap thing. Basically, it's a quick and easy way of making a box. mb-3 is a shortening of "margin bottom-3." There is 3 margin points along the bottom! The margin is 3 somethings thick along the bottom of the card. mb-lg-0 stands for margin bottom-large-0. -->
- <div class="card mb-3 mb-lg-0" style="height:425px; color:#E85324; font-family:'comic sans ms'; font-size:1rem; background:#532202; border:6px #E85324 solid; border-radius:0px"><!-- Sets up Playlist Area -->
- <!------ START HEADER ------>
- <!-- Okay! So! I'm going to explain what all the stuff in div class means now since I promised I would earlier. A card is a bootstrap thing. Basically, it's a quick and easy way of making a box. mb-3 is a shortening of "margin bottom-3." There is 3 margin points along the bottom! The margin is 3 somethings thick along the bottom of the card. mb-lg-0 stands for margin bottom-large-0. -->
- <div class="card-header py-1 px-2" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:6px #E85324 solid; border-radius:0px">
- <span class="pull-left"><i class="fas fa-leaf-oak"></i> Playlist</span> <!-- This pulls the text (and font awesome icon located in <i> to the left. -->
- </div>
- <!------ END HEADER ------>
- <!------------------------- START PLAYLIST --------------------------->
- <div class="col-12 col-xl-10 m-3"> <!-- Ah! Columns! Most bootstrap made code operates on a column based system. To get a good image, paste the following link into your search engine: https://toyhou.se/4547628.coding-resources-3 As you can see, columns can be as big as 12 and work in factors of 12 under that. col-12 is the largest we can get. We also have a margin of 3 here too! -->
- <!-- Between START SONG & END SONG is one whole music player. It's all a bit complicated and it's explained much better here: https://toyhou.se/6560537.-music-player-tutorial-f2u- So if you wannt learn how these work I'd reccomend looking there. -->
- <!------ START SONG ----->
- <td style="width:100%; text-align:center; background-color:transparent; border-color:transparent; border-style:double;">
- <span style="color:E85324; text-shadow:0px 0px;"><strong>Song Name - Artist Name</strong></span><br />
- <audio controls="" style="opacity:.99;border-radius:10px;background:E85324; padding:2px;width:300px;height:35px;"><source src="#"></audio>
- </td>
- <br>
- <!------ END SONG ----->
- </div> <!-- End Playlist -->
- <!------------------------- END PLAYLIST --------------------------->
- </div><!-- End Playlist Area -->
- <!------------------------------------------------------------- END PLAYLIST ----------------------------------------------------------->
- <!------------------------------------------------------------ START REWARDS ----------------------------------------------------------->
- <!-- This is all the same as playlist. Scroll back up to lines 80 & 84 for an explanation! -->
- <div class="card mb-3 mb-lg-0" style="color:#E85324; font-family:'comic sans ms'; font-size:1rem; background:#532202; border:6px #E85324 solid; border-radius:0px; overflow:auto;"><!-- Sets up Rewards Area -->
- <!------ START HEADER ------>
- <div class="card-header py-1 px-2" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:6px #E85324 solid; border-radius:0px">
- <span class="pull-left"><i class="fas fa-leaf-oak"></i> Rewards</span>
- </div>
- <!------ END HEADER ------>
- <!------------------------- START REWARDS --------------------------->
- <div class="col-12 col-xl-10">
- <!------ START AWARDS ------>
- <div class="card-block" style="height:250px; width:325px;">
- <!-- 5 Award -->
- <a data-toggle="tooltip" href="https://toyhou.se/17374222.character-ribbons-"
- title="------- Bean Water ------- This Character Particpated In Artfight 2018!">
- <img src="https://f2.toyhou.se/file/f2-toyhou-se/images/53113264_Bd2k12sBpXJQ56c.png" width="50" height="50" /></a>
- <!-- 5 Award -->
- <!-- 5 Award -->
- <a data-toggle="tooltip" href="https://toyhou.se/17374222.character-ribbons-"
- title="-- Pumpkin Spice Latte -- This Character Particpated In Artfight 2020!">
- <img src="https://f2.toyhou.se/file/f2-toyhou-se/images/53113461_h53VbyNGFC8U5et.png" width="50" height="50" /></a>
- <!-- 5 Award -->
- <!-- 5 Award -->
- <a data-toggle="tooltip" href="https://toyhou.se/17374222.character-ribbons-"
- title="-- Victorian Ingenuity! -- This Character Particpated In Artfight 2021!">
- <img src="https://f2.toyhou.se/file/f2-toyhou-se/images/53113490_zRLRcE8k66GBisw.png" width="50" height="50" /></a>
- <!-- 5 Award -->
- <!-- 5 Award -->
- <a data-toggle="tooltip" href="https://toyhou.se/17374222.character-ribbons-"
- title="------ Rotting Away ------ This Character Particpated In Artfight 2022!">
- <img src="https://f2.toyhou.se/file/f2-toyhou-se/images/53113611_pmOQOurYDfPPweb.png" width="50" height="50" /></a>
- <!-- 5 Award -->
- <br>
- <hr class="mx-4 my-2" />
- </div>
- <!------ END AWARDS ------>
- </div> <!-- End Awards Area -->
- <!------------------------- END REWARDS --------------------------->
- </div><!-- End Playlist Area -->
- <!------------------------------------------------------------- END REWARDS ------------------------------------------------------------>
- </div><!-- End Playlist & Rewards Area -->
- <!------------------------------------------------------ END TABS & PLAYLIST ----------------------------------------------------->
- <!----------------------------------------------------------- START INFO ------------------------------------------------------------>
- <div class="col-12 col-lg-8"><!-- Sets up Info -->
- <div class="card" style="height:735px; color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#532202; border:6px #E85324 solid; border-radius:0px"><!-- Sets up Info's Content -->
- <!------ START HEADER ------>
- <div class="card-header py-1 px-2" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:6px #E85324 solid; border-radius:0px">
- <span class="pull-left"><i class="fas fa-leaf-oak"></i> Info</span>
- </div>
- <!------ END HEADER ------>
- <!----------------------------------------------------------- START TABS ------------------------------------------------------------>
- <div class="tab-content"><!-- Sets up Tabs -->
- <!----------------------------------------------------------- START ABOUT ------------------------------------------------------------>
- <!-- If you want to add more tabs, this is important! Listen up! You know how all the buttons earlier were named after numbers? Button one corresponds to tab one, button two to tab two, etc etc. The only tab here that has "tab-pane active" is the button you want your code to start with. All the rest have "tab-pane fade", so be careful when copying and pasting! -->
- <div class="tab-pane active" id="one"><!-- Start Tab 1 -->
- <div class="card-body p-3 table-responsive" style="max-height:675px;"><!-- This area is 675 pixels high -->
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Basic Overview</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"><!-- The lil underline beneath Basic Info -->
- <!------ START INFO BOXES ------>
- <div class="row mb-2" style="max-width:600px; margin-right:auto; margin-left:auto"> <!-- Sets up the info box area -->
- <!-- Lil "Question: Answer" Section. It goes in a zigzag pattern in terms of code which is kind of annoying. For example, Name is top left, Age is top right, Gender is second down on the left, etc. Remember that if you want to add, change or delete parts. Feel free to add whatever you want here! I'd reccomend having an even number of these though.
- -->
- <div class="col-12 col-sm-6 mt-1">
- <span class="badge" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:1px #E85324 solid; border-radius:0px">Name</span>
- <span class="pull-right">Text</span>
- <hr class="my-1" style="border:1px #E85324 dashed;">
- </div>
- <div class="col-12 col-sm-6 mt-1">
- <span class="badge" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:1px #E85324 solid; border-radius:0px">Age</span>
- <span class="pull-right">N</span>
- <hr class="my-1" style="border:1px #E85324 dashed;">
- </div>
- <div class="col-12 col-sm-6 mt-1">
- <span class="badge" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:1px #E85324 solid; border-radius:0px">Species</span>
- <span class="pull-right">Text</span>
- <hr class="my-1" style="border:1px #E85324 dashed;">
- </div>
- <div class="col-12 col-sm-6 mt-1">
- <span class="badge" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:1px #E85324 solid; border-radius:0px">Resides</span>
- <span class="pull-right">Text</span>
- <hr class="my-1" style="border:1px #E85324 dashed;">
- </div>
- <div class="col-12 col-sm-6 mt-1">
- <span class="badge" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:1px #E85324 solid; border-radius:0px">Gender</span>
- <span class="pull-right">Text</span>
- <hr class="my-1" style="border:1px #E85324 dashed;">
- </div>
- <div class="col-12 col-sm-6 mt-1">
- <span class="badge" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:1px #E85324 solid; border-radius:0px">Orientation</span>
- <span class="pull-right">Text</span>
- <hr class="my-1" style="border:1px #E85324 dashed;">
- </div>
- <div class="col-12 col-sm-6 mt-1">
- <span class="badge" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:1px #E85324 solid; border-radius:0px">Occupation</span>
- <span class="pull-right">Text</span>
- <hr class="my-1" style="border:1px #E85324 dashed;">
- </div>
- <div class="col-12 col-sm-6 mt-1">
- <span class="badge" style="color:#FFFFFF; font-family:'comic sans ms'; font-size:1rem; background:#E85324; border:1px #E85324 solid; border-radius:0px"v>Voiceclaim</span>
- <a href="#" span class="pull-right" style="color:#5BC0DE;">Text</span></a>
- <hr class="my-1" style="border:1px #E85324 dashed;">
- </div>
- </div> <!-- End basic info area -->
- <!------ END INFO BOXES ------>
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Overview</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"><!-- The lil underline beneath Basic Info -->
- <p>Can you sum up your character in a few sentences? (There's a more indepth personality section in a different tab.)<br>Character McShitsmeares is a minor character who shows up for, at most, 2 pages. In that time, he is shown booing my main protagonist off stage because he's a jerk.</p> <!-- You can write anything here! -->
- </div><!-- End content -->
- </div><!-- End Tab 1 -->
- <!----------------------------------------------------------- END ABOUT ------------------------------------------------------------>
- <!---------------------------------------------------------- START BIOGRAPHY --------------------------------------------------------->
- <!-- Unlike last tab (one) which had "tab-pane active" because it's the one we see when we click on the page, this tab has "tab-pane fade"! -->
- <div class="tab-pane fade" id="two"><!-- Start Tab 2 -->
- <div class="card-body p-3 table-responsive" style="max-height:675px;"><!-- This area is 675 pixels high -->
- <!----- Start Section 1 ------>
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Personality</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"> <!-- The lil underline beneath Basic Info -->
- <p>Write about their personality here.</p>
- <!----- End Section 1 ------>
- <!----- Start Section 2 ------>
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Backstory</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"> <!-- The lil underline beneath Basic Info -->
- <p>Write about their backstory here.</p>
- <!----- End Section 2 ------>
- <!----- Start Section 3 ------>
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Current Story</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"> <!-- The lil underline beneath Basic Info -->
- <p>Write about their current story here.</p>
- <!----- End Section 3 ------>
- </div><!-- End content -->
- </div><!-- End Tab 2 -->
- <!---------------------------------------------------------- END BIOGRAPHY ----------------------------------------------------------->
- <!----------------------------------------------------------- START DESIGN ----------------------------------------------------------->
- <div class="tab-pane fade" id="three"><!-- Start Tab 3 -->
- <div class="card-body p-3 table-responsive" style="max-height:675px;"><!-- This area is 675 pixels high -->
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Design</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"><!-- The lil underline beneath Basic Info -->
- <!------ START REFERENCE ------>
- <div class="card bg-transparent border-0 rounded-0" style="max-width:600px; margin-left:auto; margin-right:auto;">
- <img src="https://f2.toyhou.se/file/f2-toyhou-se/images/44802365_IHyKSrMA6aaMIOu.jpg"> <!-- Image That Appears On Reference-->
- <a href="#" data-toggle="tooltip" title="Full Size" style="color:#FFFFFF; position:absolute; top:3px; right:7px; font-size:1.4rem"> <i class="fas fa-external-link"></i> </a> <!-- Link To Fullsize Image -->
- </div>
- <!------ END REFERENCE ------>
- <div class="row my-3" style="max-width:700px; margin-left:auto; margin-right:auto"> <!-- Div Timmy -->
- <!------ START DESIGN NOTES ------>
- <div class="col-12 col-xl-5 mb-3 mb-xl-0">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Hair Type</span>
- <span class="pull-right">Text</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Hair Colour</span>
- <span class="pull-right">Text</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Eye Colour</span>
- <span class="pull-right">Text</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Eye Vibe</span>
- <span class="pull-right">Text</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Body Type</span>
- <span class="pull-right">Text</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Skin Tone</span>
- <span class="pull-right">Text</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Height</span>
- <span class="pull-right">Text</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Weight</span>
- <span class="pull-right">Text</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Piercings</span>
- <span class="pull-right">Yes/No</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Tattoos</span>
- <span class="pull-right">Yes/No</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem; background-color:E85324; border-radius:0px;">Clothing Style</span>
- <span class="pull-right">Text</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- <span class="badge" style="font-size:1rem;; background-color:E85324; border-radius:0px;">Presentation</span>
- <span class="pull-right">Text</span>
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;">
- </div>
- <!------ END DESIGN NOTES ------>
- <!------ START EXTRA NOTES ------>
- <div class="col-12 col-xl-7">
- <span style="color:#E85324; font-size:1.4rem;"> Extra Notes</span>
- <hr class="mt-0 mb-2" style="border:1px #E85324 dashed;">
- <ul>
- <li>If they have piercings/tattoos, elaborate on that here</li>
- <li>If they present masculine, are they opposed to feminine clothing and vice versa?</li>
- <li>Any type of clothing they absolutely won't wear? (IE, Animal fur, denim, etc.)</li>
- <li>Extra notes.</li>
- </ul>
- </div>
- <!------ END EXTRA NOTES ------>
- </div>
- </div><!-- End content -->
- </div><!-- End Tab 3 -->
- <!----------------------------------------------------------- END DESIGN ------------------------------------------------------------>
- <!-------------------------------------------------------- START RELATIONSHIPS ------------------------------------------------------->
- <div class="tab-pane fade" id="four"><!-- Start Tab 4 -->
- <div class="card-body p-3 table-responsive" style="max-height:675px;"><!-- This area is 675 pixels high -->
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Relationships</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"><!-- The lil underline beneath Basic Info -->
- <!-- Copy and paste between "START CHARACTER" & "END CHARACTER" to add more characters! Remeber to change the image and source links! -->
- <!-- START CHARACTER -->
- <div class="row">
- <div class="col-12 col-sm-9 col-md-8 col-xl-9 order-2 order-sm-1">
- <a href="https://toyhou.se/dad_cetemol" style="font-size:1.4rem; color:#E85324"> Dad_Cetemol</a>
- <span class="pull-right" style="font-size:1.4rem; color:#E85324">World's Nicest Git</span>
- <hr class="mt-0 mb-2" style="border:1px #E85324 dashed;">
- <p>This guy isn't one of my characters, but he did request I make this code. Hi! I know you're reading this! (If you aren't Toyhouse User Dad_Cetemol, please follow him. He needs friends.)</p>
- </div>
- <!--image-->
- <div class="col-12 col-sm-3 col-md-4 col-xl-3 mb-2 mb-sm-0 order-1 order-sm-2">
- <div class="card bg-transparent border-0" style="max-width:150px; margin-left:auto; margin-right:auto;">
- <a data-toggle="tooltip" href="https://toyhou.se/dad_cetemol"><img src="https://f2.toyhou.se/file/f2-toyhou-se/users/dad_cetemol?2"></a>
- </div>
- </div>
- </div>
- <hr class="my-2" style="border:1px #E85324 dashed;">
- <!-- END CHARACTER -->
- </div><!-- End content -->
- </div><!-- End Tab 4 -->
- <!--------------------------------------------------------- END RELATIONSHIPS -------------------------------------------------------->
- <!----------------------------------------------------------- START TRIVIA ----------------------------------------------------------->
- <div class="tab-pane fade" id="five"><!-- Start Tab 5 -->
- <div class="card-body p-3 table-responsive" style="max-height:675px;"><!-- This area is 675 pixels high -->
- <!-- START DEVELOPMENT TRIVIA -->
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Development Trivia</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"><!-- The lil underline beneath the header -->
- <ul>
- <li>Text!</li>
- <li>More Text!</li>
- </ul>
- <!-- END DEVELOPMENT TRIVIA -->
- <!-- START CHARACTER TRIVIA -->
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Character Trivia</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"><!-- The lil underline beneath the header -->
- <ul>
- <li>Text!</li>
- <li>More Text!</li>
- </ul>
- <!-- END CHARACTER TRIVIA -->
- <!-- START MISTAKES/RETCONS TRIVIA -->
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Mistakes/Retcons Trivia</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"><!-- The lil underline beneath the header -->
- <ul>
- <li>Text!</li>
- <li>More Text!</li>
- </ul>
- <!-- END MISTAKES/RETCONS TRIVIA -->
- </div><!-- End content -->
- </div><!-- End Tab 5 -->
- <!----------------------------------------------------------- END TRIVIA ------------------------------------------------------------>
- <!------------------------------------------------------- START SECRET SECTION ------------------------------------------------------->
- <div class="tab-pane fade" id="six"><!-- Start Tab 6 -->
- <div class="card-body p-3 table-responsive" style="max-height:675px;"><!-- This area is 675 pixels high -->
- <span style="color:#E85324; font-family:'comic sans ms'; font-size:1.4rem;">Secret Section</span><!-- The header at the top -->
- <hr class="mt-1 mb-2" style="border:1px #E85324 dashed;"><!-- The lil underline beneath Basic Info -->
- <p>Put whatever you want here! It's like a secret notebook, most people won't find this.</p>
- </div><!-- End content -->
- </div><!-- End Tab 6 -->
- <!-------------------------------------------------------- END SECRET SECTION -------------------------------------------------------->
- </div> <!-- End Tabs -->
- <!----------------------------------------------------------- END TABS ------------------------------------------------------------>
- </div><!-- End Info's Content -->
- </div><!-- End Info -->
- </div><!-- End "The Rest Of The Code" -->
- <!--------------------- START OF COLOURS --------------------->
- <ul class="nav nav-justified" style="font-size:16px; border:8px;">
- <!-- Each one of these lines is a unique colour! Now, I know you like your colours, so in this system you can have as many or as few colours as you want. Just always make sure that the first colour listed always has a character/word with a set font size so your colours aren't super skinny. (Remember to change both of the colours in colour number 1!)-->
- <li class="nav-item m-0" style="color:#FFEFE7; font-size:1rem; background:#FFEFE7;">I</li> <!-- Change this to be a secret message. -->
- <li class="nav-item m-0" style="background:#FFE0D1;"></li>
- <li class="nav-item m-0" style="background:#FFBD9B;"></li>
- <li class="nav-item m-0" style="background:#BB8514;"></li>
- <li class="nav-item m-0" style="background:#392E6D;"></li>
- <li class="nav-item m-0" style="background:#1E0F00;"></li>
- </ul><!-- Ends the button list -->
- <!--------------------- END OF COLOURS --------------------->
- </div> <!-- End Code! -->
- <!--Credit. You may move it, but please do not delete/remove-->
- <div class="text-right w-100">
- <a href="https://toyhou.se/17050581.construction-site" target="_blank" class="m-1" style="color:#fff;"><i class="fas fa-code"></i> Code By CrispinAsheYA</a>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement