js__bootstrap_demos/chapter4/11modal-content.html

28 lines
626 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Model remote content</title>
<meta charset="utf-8"/>
</head>
<body>
<!-- Modal header -->
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">2 Welcome back!</h4>
</div>
<!-- Modal body -->
<div class="modal-body">
<h1>2 Hello readers!</h1>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">2 Close</button>
<button type="button" class="btn btn-primary" data-dismiss="modal">2 Save</button>
</div>
</body>
</html>