Advertisement
csfeijo

modal-bs

Dec 10th, 2020
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.25 KB | None | 0 0
  1.   <!-- Button trigger modal -->
  2.             <button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  3.               Launch demo modal
  4.             </button>
  5.  
  6.             <!-- Modal -->
  7.             <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  8.               <div class="modal-dialog" role="document">
  9.                 <div class="modal-content">
  10.                   <div class="modal-header">
  11.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  12.                     <h4 class="modal-title" id="myModalLabel">Modal title</h4>
  13.                   </div>
  14.                   <div class="modal-body">
  15.                   CORPO DO TEXTO
  16.                   </div>
  17.                   <div class="modal-footer">
  18.                     <button type="button" class="btn btn-default" data-dismiss="modal">CANCELAR</button>
  19.                     <a href="acao-dep..." class="btn btn-danger">CONFIRMAR</a>
  20.                   </div>
  21.                 </div>
  22.               </div>
  23.             </div>
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.   <script src="js/jquery-3.5.1.min.js"></script>
  36.   <script src="js/bootstrap.js"></script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement