Created
June 7, 2019 13:44
-
-
Save pictolearn/fd445907723bd707b2644a7f76f1e364 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Bootstrap Example</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script> | |
</head> | |
<body> | |
<div class="jumbotron text-center"> | |
<h1>My First Bootstrap Page</h1> | |
<p>Resize this responsive page to see the effect!</p> | |
</div> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-sm-4"> | |
<div id="loadpage"> | |
</div> | |
</div> | |
</div> | |
</div> | |
<script> | |
$("#loadpage").load("https://<bucket-name>.s3.amazonaws.com/loadpage.html"); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment