JQuery not loading with bootstrap : Help Topic

<!DOCTYPE html>
<html>
	<head>
		<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
		<script src="https://code.jquery.com/jquery-2.2.4.js"   integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI="   crossorigin="anonymous"></script>
		<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"</script>
	</head>
	<body>
		<script>
		  $(document).ready(function() {
		    $("#getMessage").on("click", function(){
		      // Only change code below this line.
		      $(".message").html("Here is the message");
		      // Only change code above this line.
		    });
		  });
		</script>
		
	    <div class = "message">
	      The message will go here
	    </div>
	    <button id = "getMessage">
	        Get Message
	    </button>
	</body>
</html>

Title speaks for itself.
The above code works just fine once I remove the bootstrap CDN lines. For some reason the JQuery wont load if I have bootstrap there.

The script tag you’re using to import Bootstrap isn’t closed.

bootstrap.min.js"</

Thanks. Completely missed that. :thumbsup: