I made a small font with controller in AngularJS and when I run I get the attached error message.
Idonotknowwheretheerrormightbeconsideringthiscodeisverysimple.
Source:
<!DOCTYPEhtml><htmllang="pt-br" ng-app>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Controllers</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.6/angular.min.js"></script></head><body><divng-controller="CtrlApp">
<h1>{{nome}}</h1>
</div>
</body>
<script type="text/javascript">
var CtrlApp = function(){
}
</script>
</html>