<!DOCTYPE html>
<html>
<head>
<title>Wikitechy AngularJS Tutorials</title>
</head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js">
</script>
<body>
<div ng-app="myApp" ng-controller="ucaseCtrl">
<h1> Wikitechy uppercase filter in AngularJS </h1>
<h3> The uppercase filter text is :" {{msg | uppercase }} "</h3>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('ucaseCtrl', function($scope) {
$scope.msg = "Welcome To AngularJS Tutorials";
});
</script>
</body>
</html>