"Bootstrap Modal"
Bootstrap 3.2.0 Snippet by MIlyas92

<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalLong"> <i class="fa fa-check" aria-hidden="true"></i> Read Terms & Conditions </button> <div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle">Terms and Conditions</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <p style="text-align:justify"> By clicking ‘I Agree’ you agree to the Terms and Conditions and Privacy Policy. </p> </div> <div class="modal-footer"> <button type="button" data-dismiss="modal" class="btn blue-chambray"> <i class="fa fa-check" aria-hidden="true"></i> <span></span> I Agree</button> </div> </div> </div> </div> </div> </div>

Related: See More


Questions / Comments: