1<a href="#" target="_blank">Opens the linked document in a new window or tab</a>
2
3<a href="#" target="_self"> Opens the linked document in the same frame as it was clicked (this is default)</a>
4
5<a href="#" target="_parent">Opens the linked document in the parent frame</a>
6
7<a href="#" target="_top">Opens the linked document in the full body of the window</a>
8
1Notice the link element has two custom data attributes:
2data-toggle and data-target . The toggle tells Bootstrap what to do
3and the target tells Bootstrap which element is going to open.
4So whenever a link like that is clicked,
5a modal with an ID of “basicModal” will appear