Advertisement
Guest User

Untitled

a guest
Mar 28th, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Title</title>
  5. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  6. <link rel="stylesheet" type="text/css" href="styles/bootstrap.min.css" />
  7. <link rel="stylesheet" type="text/css"
  8. href="styles/bootstrap-theme.min.css" />
  9.  
  10. <script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
  11. <script type="text/javascipt" src="js/bootstrap.min.js"></script>
  12. </head>
  13. <body>
  14. <button type="button" class="btn btn-primary btn-lg"
  15. data-toggle="modal" data-target="#myModal">Launch demo modal
  16. </button>
  17.  
  18. <!-- Modal for file filter -->
  19. <div class="modal fade" id="myModal" tabindex="-1" role="dialog"
  20. aria-labelledby="myModalLabel" aria-hidden="true">
  21. <div class="modal-dialog">
  22. <div class="modal-content">
  23. <div class="modal-header">
  24. <button type="button" class="close" data-dismiss="modal"
  25. aria-label="Close">
  26. <span aria-hidden="true">&times;</span>
  27. </button>
  28. <h4 class="modal-title" id="myModalLabel">Modal title</h4>
  29. </div>
  30. <div class="modal-body">...</div>
  31. <div class="modal-footer">
  32. <button type="button" class="btn btn-primary">Apply</button>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement