how to make bootstrap 4 modal
Modal is a child window that is layered over its parent window. It displays the content from a separate source that can have some interaction without leaving the parent window.
Basic Modal
Create a modal by using the .modal class and attribute data-toggle = “modal” on a element, like a button or link, along with a data-target = “#myModal
“ or href = “#myModal
“ to target a specific modal to toggle.
A static modal window example is shown in the following example