Advertisement
VinceTriesToCode

Static Faux Visual Novel

Jun 9th, 2023 (edited)
1,115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.07 KB | None | 0 0
  1. <!-- black bars / big container -->
  2. <div class="container py-4 px-0 mx-auto" style="background:#000">
  3.  
  4. <!-- background image -->
  5.     <div class="container p-2 mx-auto text-light" style="max-height:510px; background-image: url(https://upload.wikimedia.org/wikipedia/commons/8/89/Portrait_Placeholder.png); background-repeat:none; background-position:bottom;">
  6.        
  7. <!-- character image, to change where the character is in the scene, add "top:#px; left:#px; right:#px; bottom#px;" to the style section, adjust the numbers [# replace with number] as needed, direction is funny so just mess about until happy if needed -->
  8. <img src="https://upload.wikimedia.org/wikipedia/commons/8/89/Portrait_Placeholder.png" class="position-absolute" style="max-height:500px; width:auto;">
  9.  
  10. <!-- speech box -->        
  11.         <div class="container rounded p-2 m-1 mx-auto position-absolute" style="bottom:140px; overflow-y:auto; max-height:100px; background:rgba(0, 0, 0, .8); border:solid; border-width:1px;">
  12.         <h1 class="text-uppercase" style="font-family:helvetica; letter-spacing:3px; font-size:20px"><span style="color:#CE243E;">N</span>AME</h1>    
  13.         <hr class="m-0 mb-2">
  14.        
  15.             <p>Words</p>
  16.             <i class="fa fa-caret-down fa-bounce" style="position:absolute; right:9px; bottom:7px;"></i>
  17.         </div>
  18. <!-- end speech box -->
  19.  
  20.     </div>
  21. <!-- end background -->
  22.  
  23. <!-- end all -->
  24. </div>
  25.  
  26. <!-- credits for the two images used -->
  27. <div class="row mx-1 justify-content-end">
  28. <div style="font-size:10px;"><a href="https://commons.wikimedia.org/wiki/File:Portrait_Placeholder.png" target="_blank" style="color:#edf6f9"><i class="fa fa-image pl-1"></i></a></div>
  29. <div style="font-size:10px;"><a href="https://commons.wikimedia.org/wiki/File:Portrait_Placeholder.png" target="_blank" style="color:#edf6f9"><i class="fa fa-image pl-1"></i></a></div>
  30.  
  31. <!-- my coding credit, do not remove please ! -->
  32. <div style="font-size:10px;"><a href="https://toyhou.se/TERRIIFIIED" target="_blank" style="color:#edf6f9"><i class="fa fa-code pl-1"></i></a></div>
  33. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement