RylofScripts

bootstrap modal blueprint

Sep 18th, 2023
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.83 KB | None | 0 0
  1.  <!-- Button to Open the Modal -->
  2.   <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal" id="openModalBtn">
  3.     Open Modal
  4.   </button>
  5.  
  6.   <!-- The Modal -->
  7.   <div class="modal" id="myModal">
  8.     <div class="modal-dialog">
  9.       <div class="modal-content">
  10.  
  11.         <!-- Modal Header -->
  12.         <div class="modal-header">
  13.           <h4 class="modal-title">Modal Heading</h4>
  14.           <button type="button" class="close" data-dismiss="modal">&times;</button>
  15.         </div>
  16.  
  17.         <!-- Modal body -->
  18.         <div class="modal-body">
  19.           Modal body text here.
  20.         </div>
  21.  
  22.         <!-- Modal footer -->
  23.         <div class="modal-footer">
  24.           <button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
  25.         </div>
  26.  
  27.       </div>
  28.     </div>
  29.   </div>
Advertisement
Add Comment
Please, Sign In to add comment