Skip to content

Instantly share code, notes, and snippets.

@dogweather
Forked from andrefe90/modal
Created November 3, 2015 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dogweather/07b31b8b344f64fe4e13 to your computer and use it in GitHub Desktop.
Save dogweather/07b31b8b344f64fe4e13 to your computer and use it in GitHub Desktop.
<div class= "row">
<div class="header">
<h2 class= "learn-more"> Learn More </h2>
</div>
<div class="modalbutton">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-lg">Awesomness</button>
</div>
<!-- Large modal -->
<div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="myModalLabel">What up Player</h4>
</div>
<div class="modal-body">
Looks pretty amazing
</div>
</div>
</div>
</div>
</div>
<!-- END Large modal -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment