Below is an anchor tag I have set up:
<a href="#" data-toggle="modal" data-target="#modalTC">terms and conditions</a>
Here is the structure of my modal:
<!-- Modal -->
<div class="modal fade" id="modalTC" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">× </button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<p>Some text in the modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
You can check out the Fiddle as well.
If there are any issues, please let me know. PS: I have all the necessary files including Bootstrap and Jquery.