Modals Bootstrap 5Free+ JS
Custom modal colored — a free Bootstrap 5 modal snippet. Copy the HTML & JS and paste straight into your Bootstrap 5 project.
1.7k views13 downloads
gosnippets.com/preview/custom-modal-colored
Source Code
1<!DOCTYPE html>
2<html lang="pt-br" dir="ltr">
3<head>
4 <meta charset="utf-8">
5 <title></title>
6 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
8 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
9 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
10</head>
11
12<body>
13 <!-- created by @BrCodeSnippets -->
14 <div class="container mt-3 pt-3">
15 <div id="div_buttons" class="row g-3 m-0 p-0">
16 </div>
17 </div>
18 <!-- modal element -->
19 <div id="my_modal" class="modal shadow rounded" tabindex="-1">
20 <div class="modal-dialog modal-dialog-centered">
21 <div class="modal-content">
22 <div id="modal_header" class="modal-header">
23 <h5 id="modal_title" class="modal-title">Modal title</h5>
24 <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
25 </div>
26 <div id="modal_body" class="modal-body">
27 <p>Modal body text goes here.</p>
28 </div>
29 <div id="modal_footer" class="modal-footer">
30 footer do modal
31 <button data-action="0" type="button" class=" ms-3 btn btn-secondary" data-bs-dismiss="modal">Fechar</button>
32 </div>
33 </div>
34 </div>
35 </div>
36</body>
37</html>
38More Modals snippets

Bootstrap Delete Confirmation Modal snippet
Bootstrap Delete Confirmation Modal snippet — a free Bootstrap 5 modal snippet. Copy the HTML and paste straight into your Bootstrap 5 project.
ModalsView →

Bootstrap Simple Success Confirmation Popup snippet
Free Bootstrap 5 modal snippet — Bootstrap Simple Success Confirmation Popup snippet. Preview, copy HTML, drop it into any Bootstrap 5 project.
ModalsView →

Bootstrap 5 customer ratings modal snippets with emojis
Add a modal to your UI with Bootstrap 5 customer ratings modal snippets with emojis. Free Bootstrap 5 code — HTML & CSS ready to copy, MIT licensed.
ModalsView →
Comments(0)
No comments yet — be the first to start the discussion.
Sign in to join the conversation.