Advertisement
redenvii

Simple Blurb

May 22nd, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.65 KB | None | 0 0
  1. <!--
  2.  
  3.  Replacing images, the easy way!
  4.  
  5.  1. Click Ctrl F on your keyboard.
  6.  2. In the "search for" section, place the link you want to replace.
  7.  3. Click the plus sign.
  8.  4. In the "Replace with" section, place your image link and press the replace button!
  9.  
  10.  Avatar : https://via.placeholder.com/500/?text=avatar
  11.  
  12. -------------------------------------
  13.  
  14.  Replacing colors, the easy way!
  15.  
  16.    1. Click Ctrl F on your keyboard.
  17.    2. In the "search for" section, place the color you want to replace.
  18.    3. Click the plus sign.
  19.    4. In the "Replace with" section, place your image hex code and press the all button!
  20.  
  21.  This is for the default bootstrap colors only!
  22.  
  23.  Current Color : #5AB5D1
  24.  
  25. -------------------------------------
  26.  
  27.  TERMS OF SERVICES
  28.  1. DO NOT remove my credits. I tried to make them small.
  29.  2. DO NOT advertise my codes or modify my codes to advertise as your own.
  30.  3. My codes are for personal use only.
  31.  4. Do not turn on WYSIWYG when using my code- it will break it!
  32.  5. Do not steal, claim, redistribute or heavily reference my codes.
  33.      5a. Redistributing my codes that you edited still falls under stealing.
  34.  6. I will block and blacklist anyone who breaks these rules.
  35.  7. Let me know when you use my code in my HTML forum post!
  36.  
  37.  This HTML was created by @redenvii.
  38.  
  39. -->
  40.  
  41. <div class="container">
  42. <div class="row justify-content-center align-items-center">
  43.  
  44.   <div class="col-sm-4">
  45.     <img src="https://via.placeholder.com/500/?text=avatar">
  46.     <small class="text-muted float-left">art by @/username</small><small class="text-muted float-right">html by @codenvii</small>
  47.   </div>
  48.  
  49.     <div class="p-1"></div>
  50.  
  51.   <div class="col-sm-4 text-left">
  52.     <h3 class="display-4 p-2" style="background-color:5AB5D1;">Character Name</h3>
  53.     <div class="text-muted text-right">stuff - stuff - stuff</div>
  54.       <div class="p-1"></div>
  55.     <div>Write a small description of your character here! Doesn't really matter how long it is but keep it short if you want the details to stay within the height of the image!
  56.    
  57.       <div class="p-3"></div>
  58.    
  59.     <div class="row">
  60.       <div class="col-sm">
  61.       <h3 class="display-4 p-2" style="background-color:5AB5D1;">Likes</h3>
  62.       <ul>
  63.         <li>Like</li>
  64.         <li>Like</li>
  65.         <li>Like</li>
  66.       </ul>
  67.       </div>
  68.      
  69.       <div class="col-sm">
  70.         <h3 class="display-4 p-2" style="background-color:5AB5D1;">Dislikes</h3>
  71.         <ul>
  72.           <li>Dislike</li>
  73.           <li>Dislike</li>
  74.           <li>Dislike</li>
  75.         </ul>
  76.       </div>
  77.    
  78.     </div>
  79.    
  80.     </div>
  81.   </div>
  82.  
  83. </div>
  84. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement