I'm working on my first AngularJS Router using Brackets editor for me to test it on a localhost (I understand it will not work on my local machine). The include files works OK, but It will not load all 5 HTML files. Please see all of the codes on Plunker. I don't understand what's missing.
HTML
<head>
<title>Welcome!</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular-route.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="myApp">
<!-- header section -->
<div ng-include="'header.html'"></div>
<br><br>
<!-- views section -->
<div ng-view>View pages here...</div>
<br><br>
<!-- footer section -->
<div ng-include="'footer.html'"></div>
</body>
script.js
var app = angular.module('myApp', ['ngRoute'])
.config(function($routeProvider) {
$routeProvider.when('/1', {
templateUrl: '1.html'
})
$routeProvider.when('/2', {
templateUrl: '2.html'
})
$routeProvider.when('/3', {
templateUrl: '3.html'
})
$routeProvider.when('/4', {
templateUrl: '4.html'
})
$routeProvider.when('/5', {
templateUrl: '5.html'
})
});