Created
January 19, 2016 18:40
-
-
Save fredericAerts/470074ae589de10b2594 to your computer and use it in GitHub Desktop.
web developer in 3 days - v10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Modal --> | |
| <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> | |
| <div class="modal-dialog"> | |
| <div class="modal-content"> | |
| <div class="modal-header"> | |
| <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> | |
| <h4 class="modal-title" id="myModalLabel">This is a bootstrap modal</h4> | |
| </div> | |
| <div class="modal-body"> | |
| <p> | |
| Yep, in 3 days you'll be throwing modals like these into people's faces! | |
| </p> | |
| <p> | |
| Who's boss ... | |
| </p> | |
| </div> | |
| <div class="modal-footer"> | |
| <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment