Advertisement
rikatoola

F2U ✦ starstruck

Oct 1st, 2024 (edited)
700
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 7.25 KB | Source Code | 0 0
  1. <!--------------------------------------------------------------------------------
  2.  
  3. ✦ ⋯ ACCENT COLORS
  4.     > accent #1: 526682
  5.  
  6. ✦ ⋯ TO CHANGE THE MARGINS
  7.     > adjust the max-width: 550px; to what best suits your tastes.
  8.     > you may also add a certain height to it (min-height: 0px;),
  9.     though i do not think it looks good.
  10.  
  11. --------------------------------------------------------------------------------->
  12.  
  13.  
  14.   <div class="card bg-transparent m-5 border-0 mx-auto"
  15.       style="max-width: 550px;">
  16.  
  17.  
  18.  
  19.  
  20. <!--------------------------------------------------------------------------------
  21.  
  22. ✦ ⋯ START OF THE CODE
  23.     > main information
  24.  
  25. --------------------------------------------------------------------------------->
  26.  
  27.      
  28.     <div class="row no-gutters">
  29.        
  30.         <!--------- doll / decoration image ------------------------------------->
  31.         <div class="col-lg-4">
  32.             <img src="URL">
  33.     </div>
  34.  
  35.  
  36.     <div class="col-lg-8">
  37.         <p class="m-2"
  38.           style="font-size: 18px;">
  39.             <font style="color:#526682;">
  40.                 ✸
  41.             </font>
  42.                  
  43.             <font style="letter-spacing: .2em">
  44.                 <i>USER</i>
  45.             </font>
  46.                  
  47.             <font style="opacity: 0.4;
  48.                         color:#526682;">
  49.                 ✦
  50.             </font>
  51.                  
  52.             NAME
  53.                  
  54.             <font style="opacity: 0.4;
  55.                         color:#526682;">
  56.                 ✦
  57.             </font>
  58.                  
  59.             AGE
  60.                  
  61.             <font style="opacity: 0.4;
  62.                         color:#526682;">
  63.                 ✦
  64.             </font>
  65.                  
  66.             PRO / NOUNS
  67.         </p>
  68.  
  69.  
  70.  
  71.  
  72. <!--------------------------------------------------------------------------------
  73.  
  74. ✦ ⋯ DIVIDER
  75.     > to add an IMAGE divider, simply use this code instead:
  76.     > you can adjust or entirely remove opacity if you wish.
  77.    
  78.     <img class="mb-2 my-2"
  79.         src="URL"
  80.         style="opacity: 0.3;">
  81.  
  82. --------------------------------------------------------------------------------->
  83.  
  84.  
  85.     <!--------- divider --------------------------------------------------------->
  86.     <div class="card bg-transparent mb-3 my-3"
  87.         style="border-top: 1px solid #526682;
  88.                border-bottom: 0px solid;
  89.                border-left: 0px solid;
  90.                border-right: 0px solid;
  91.                filter: drop-shadow(0px 0px 2px #526682);
  92.                opacity: 0.5;"></div>
  93.              
  94.     <!--------- about ----------------------------------------------------------->
  95.     <p class="m-1"
  96.       style="text-align: center; font-size: smaller;">
  97.            
  98.          put an info blurb here. it looks better if its shorter, but honestly go crazy! talk about yourself, your interests, etc.
  99.            
  100.     </p>
  101.              
  102.              
  103.     <!--------- divider --------------------------------------------------------->
  104.     <div class="card bg-transparent mb-3 my-3"
  105.         style="border-top: 1px solid #526682;
  106.                border-bottom: 0px solid;
  107.                border-left: 0px solid;
  108.                border-right: 0px solid;
  109.                filter: drop-shadow(0px 0px 2px #526682);
  110.                opacity: 0.5;"></div>
  111.  
  112.  
  113.  
  114.  
  115. <!--------------------------------------------------------------------------------
  116.  
  117. ✦ ⋯ LINKS
  118.     > any kind of links or information can be listed here!
  119.     > feel free to heavily edit & customize the aesthetics yourself.
  120.  
  121. --------------------------------------------------------------------------------->
  122.  
  123.  
  124.     <!--------- link # 1 -------------------------------------------------------->
  125.     <p class="m-1">
  126.         <font style="color:#526682;">
  127.             ⯏
  128.         </font>
  129.                  
  130.         (
  131.              about me
  132.         )
  133.                  
  134.         <a href="URL"
  135.           style="color:#526682;">
  136.             link
  137.         </a>
  138.     </p>
  139.    
  140.    
  141.     <!--------- link # 2 -------------------------------------------------------->
  142.     <p class="m-1">
  143.         <font style="color:#526682;">
  144.             ⯏
  145.         </font>
  146.                  
  147.         (
  148.              commissions
  149.         )
  150.                  
  151.         <a href="URL"
  152.           style="color:#526682;">
  153.             open / closed / ask
  154.         </a>
  155.     </p>
  156.    
  157.    
  158.     <!--------- link # 3 -------------------------------------------------------->
  159.     <p class="m-1">
  160.         <font style="color:#526682;">
  161.             ⯏
  162.         </font>
  163.                  
  164.         (
  165.              secondary accounts
  166.         )
  167.                  
  168.         <a href="URL"
  169.           style="color:#526682;">
  170.             account
  171.         </a>
  172.                      
  173.             /
  174.                      
  175.         <a href="URL"
  176.           style="color:#526682;">
  177.             account
  178.         </a>
  179.     </p>
  180.  
  181.  
  182.     <!--------- divider --------------------------------------------------------->
  183.     <div class="card bg-transparent mb-3 my-3"
  184.         style="border-top: 1px solid #526682;
  185.                border-bottom: 0px solid;
  186.                border-left: 0px solid;
  187.                border-right: 0px solid;
  188.                filter: drop-shadow(0px 0px 2px #526682);
  189.                opacity: 0.5;"></div>
  190.  
  191.  
  192.  
  193. <!--------------------------------------------------------------------------------
  194.  
  195. ✦ ⋯ EXTRA INFO
  196.     > list or link things like DNI, FAQ, T.O.S etc here!
  197.     > this section is honestly optional.
  198.  
  199. --------------------------------------------------------------------------------->
  200.  
  201.  
  202.     <!--------- extra # 1 ------------------------------------------------------->
  203.     <p class="m-1">
  204.         <font style="color:#526682;">
  205.             ⯏
  206.         </font>
  207.  
  208.         (
  209.              T.O.S
  210.         )
  211.  
  212.         please make sure to take the time to read my terms of service, which can be found
  213.         <a href="https://toyhou.se/17355954.t-o-s"
  214.           style="color:#526682;">
  215.             here.
  216.         </a>
  217.     </p>
  218.    
  219.    
  220.     <!--------- extra # 1 ------------------------------------------------------->
  221.     <p class="m-1">
  222.         <font style="color:#526682;">
  223.             ⯏
  224.         </font>
  225.  
  226.         (
  227.              F.A.Q
  228.         )
  229.  
  230.         i do not have a FAQ, but feel free to ask questions applicable to coding/broken code. i however may ignore questions on how to code, as sometimes i do not have the energy to respond. thank you!
  231.         </a>
  232.     </p>
  233.  
  234.     </div>
  235.  
  236.  
  237.  
  238. <!--------------------------------------------------------------------------------
  239.  
  240. ✦ ⋯ CREDITS
  241.     > please do not remove!
  242.     > you MAY edit / move it around for aesthetics / personal aesthetics,
  243.     however it must STILL remain visible !
  244.  
  245. --------------------------------------------------------------------------------->
  246.  
  247.  
  248.   <p class="mx-auto p-2">
  249.       <a href="https://toyhou.se/29519406.f2u-starstruck">
  250.           <i class="fa-solid fa-code tooltipster"
  251.             title="code by bumblebree" data-toggle-original="code by bumblebree"
  252.             style="color: #526682;
  253.                    opacity: 0.4;"></i>
  254.       </a>
  255.   </p>
  256.   </div>
  257.      
  258.   </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement