Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Bootstrap Simple Subscribe Newsletter Modal</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto|Varela+Round"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script> <style> body { font-family: 'Varela Round', sans-serif; } .modal-newsletter { color: #999; width: 625px; max-width: 625px; font-size: 15px; } .modal-newsletter .modal-content { padding: 30px; border-radius: 0; border: none; } .modal-newsletter .modal-header { border-bottom: none; position: relative; border-radius: 0; } .modal-newsletter h4 { color: #000; font-size: 30px; margin: 0; font-weight: bold; } .modal-newsletter .close { position: absolute; top: -15px; right: -15px; text-shadow: none; opacity: 0.3; font-size: 24px; } .modal-newsletter .close:hover { opacity: 0.8; } .modal-newsletter .icon-box { color: #7265ea; display: inline-block; z-index: 9; text-align: center; position: relative; margin-bottom: 10px; } .modal-newsletter .icon-box i { font-size: 110px; } .modal-newsletter .form-control, .modal-newsletter .btn { min-height: 46px; border-radius: 0; } .modal-newsletter .form-control { box-shadow: none; border-color: #dbdbdb; } .modal-newsletter .form-control:focus { border-color: #f95858; box-shadow: 0 0 8px rgba(249, 88, 88, 0.4); } .modal-newsletter .btn { color: #fff; background: #f95858; text-decoration: none; transition: all 0.4s; line-height: normal; padding: 6px 20px; min-width: 150px; margin-left: 6px !important; border: none; } .modal-newsletter .btn:hover, .modal-newsletter .btn:focus { box-shadow: 0 0 8px rgba(249, 88, 88, 0.4); background: #f72222; outline: none; } .modal-newsletter .input-group { margin-top: 30px; } .hint-text { margin: 100px auto; text-align: center; } </style> <script> $(document).ready(function(){ $("#myModal").modal('show'); }); </script> </head> <body> <div id="myModal" class="modal fade"> <div class="modal-dialog modal-newsletter"> <div class="modal-content"> <form action="/examples/actions/confirmation.php" method="post"> <div class="modal-header"> <h4>Subscribe to our newsletter</h4> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span>×</span></button> </div> <div class="modal-body"> <p>Signup for our weekly newsletter to get the latest news, updates and amazing offers delivered directly in your inbox.</p> <div class="input-group"> <input type="email" class="form-control" placeholder="Enter your email" required> <div class="input-group-append"> <input type="submit" class="btn btn-primary" value="Subscribe"> </div> </div> </div> </form> </div> </div> </div> <p class="hint-text"><strong>Note:</strong> Please refresh the page or run the code to reload the modal.</p> </body> </html>