4ngelbugz

[F2U TH CODE] SYMMETRICAL

Aug 15th, 2023
1,265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.83 KB | None | 0 0
  1. <!--
  2.      SYMMETRICAL
  3.      free html character profile by juette
  4.      
  5.      RULES:
  6.      1) dont remove the credit or edit the link so people can find this easily
  7.      2) feel free to edit or mix it with other codes as long as the other codes' makers are ok with it and you dont redistribute it
  8.      3) please comment on the forum post if you use! i wanna see the results! https://toyhou.se/~forums/16.htmlcss-graphics/153697
  9.      
  10.      CTRL+F to change the images
  11.      left image -> LEFTIMG
  12.      header background -> HEADERIMG
  13.      right image -> RIGHTIMG
  14.      
  15. -->
  16.  
  17. <div class="container-fluid px-0 mt-lg-4" style="max-width: 1000px; min-height: 650px;">
  18.   <div class="row no-gutters">
  19.     <div class="col-lg-2 d-none d-lg-block">
  20.       <div
  21.        class="card card-block p-2 p-lg-3 pt-1 mt-lg-2 border-0"
  22.        style="
  23.          height: 350px;
  24.          background-image: url(LEFTIMG);
  25.          background-size: cover; background-position: center; border-radius: 0% 0% 0% 100%;"
  26.      ></div>
  27.     </div>
  28.     <div class="col-12 col-lg-8">
  29.       <div
  30.        class="card card-block p-2 p-lg-3 pt-1 mt-2 border-0 rounded-0 text-center"
  31.        style="
  32.          background-image: url(HEADERIMG);
  33.          background-size: cover;
  34.          background-position: center;
  35.        "
  36.      >
  37.         <h2 class="display-1" style="color: #fff;">NAME</h2>
  38.       </div>
  39.       <div class="card card-block p-2 p-lg-3 pt-1 mt-2 bg-faded border-0 rounded-0 text-center">
  40.         <h3>ABOUT</h3>
  41.         <p>This is a character profile HTML based on one of the very first Tumblr themes I made for myself when i was just learning HTML. You can use it for any kind of character!</p>
  42.         <p>You can write as much as you want in the boxes, they will not scroll. The two side images will not appear on small screens.</p>
  43.       </div>
  44.       <div class="card card-block p-2 p-lg-3 pt-1 mt-2 bg-faded border-0 rounded-0 text-center">
  45.         <h3>BACKSTORY</h3>
  46.         <p>
  47.           Write here!
  48.         </p>
  49.       </div>
  50.       <div class="card card-block p-2 p-lg-3 pt-1 mt-2 bg-faded border-0 rounded-0">
  51.         <h3 class="text-center">TRIVIA</h3>
  52.         <ul>
  53.           <li>one</li>
  54.           <li>
  55.             two
  56.             <ul>
  57.               <li>two two</li>
  58.             </ul>
  59.           </li>
  60.           <li>three</li>
  61.         </ul>
  62.       </div>
  63.       <p class="text-right small mt-2 mr-2"><a href="https://toyhou.se/22985175.f2u-12-symmetrical">HTML by juette</a></p>
  64.     </div>
  65.     <div class="col-lg-2 d-none d-lg-block">
  66.       <div
  67.        class="card card-block p-2 p-lg-3 pt-1 mt-lg-2 border-0"
  68.        style="
  69.          height: 350px;
  70.          background-image: url(RIGHTIMG);
  71.          background-size: cover; background-position: center; border-radius: 0% 0% 100% 0%;"
  72.      ></div>
  73.     </div>
  74.   </div>
  75. </div>
Advertisement
Add Comment
Please, Sign In to add comment