I have the following simple html file
<!DOCTYPE html>
<html ng-app="store">
<head>
    <title></title>
    <link href="bootstrap.min.css" rel="stylesheet" />
    
</head>
<body>
    
<script src="angular.min.js"  type="text/javascript" ></script>
    <script src="app.js"></script>
    <p>{{Hello Angular!!}}</p>
</body>
</html>and app.js file
'use strict';
var app = angular.module('store', []);I'm getting error "angular is undefined" while running HTML file under webserver. Can anyone please suggest what I'm doing wrong!