<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-3">
<h2>Modal Options</h2>
<p>The backdrop option specifies whether the modal should have a dark overlay (the background color of the current page) or not.</p>
<button type="button" class="btn btn-primary" id="myBtn">Modal with Overlay (backdrop:true)</button>
<button type="button" class="btn btn-primary" id="myBtn2">Modal without Overlay (backdrop:false)</button>
<button type="button" class="btn btn-primary" id="myBtn3">Modal with backdrop:"static"</button>
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Modal with Dark Overlay</h4>
<button type="button" class="close" data-dismiss="modal">×</button>