I am creating a bootstrap template. I am getting two errors, I can't figure out what I am doing wrong. When I search for similar issues, it seems to be the scripts are out of order, but I think they are correctly positioned.
THE TWO ERRORS:
Uncaught ReferenceError: jQuery is not defined
Uncaught Error: Bootstrap's JavaScript requires jQuery
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!--IE Edge meta Tag-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--Viewport-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Minified Bootstrap CSS from MaxCDN-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/custom.css">
<title>Bootstrap 3.3.5</title>
<meta name="keywords" content="keywords, go, here">
<meta name="description" content="meta description goes here">
</head>
<body>
<h1>header</h1>
<p>Lorem ipsum dolor sit amet, an numquam platonem abhorreant mea, nec at eripuit tincidunt accommodare. Ut sit utinam ridens commune. Nec ad stet utroque periculis. Eu eum errem assueverit. Ius vitae definitionem ea.</p>
<!--jquery CDN-->
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<!-- Bootstrap's JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
<!--link to local js file-->
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>