i m beginner plz can you help me that why content on welcome.html is not beign shown
what should i do please rply fast
{i am using notepad++ as editor}
<!DOCTYPE html>
<html>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<p>Today's welcome message is:</p>
<h1>{{myWelcome}}</h1>
</div>
<p>The $http service requests a page on the server, and the response is set as the value of the "myWelcome" variable.</p>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $http) {
$http.get("welcome.html")
.then(function(response) {
$scope.myWelcome = response.data;
});
});
</script>
</body>
</html>
welcome.html
<html><head>
</head>
<body>
<h1 style="color:green">Bievenue! Angular JS du Page</h1>
</body>
</html>