<html lang="en">
<head>
<meta charset="UTF-8">
<title>Angular ngApp Örnek</title>
</head>
<body >
<div ng-app="ornekModul" ng-strict-di>
<div ng-controller="ornekController">
ornek Angular ngApp : {{a}} + {{b}} = {{ a+b }}
</div>
</div>
</body>
</html>
(function(angular) {
'use strict';
angular.module('ornekModul', [])
.controller('ornekController', ['$scope', function($scope) {
$scope.a = 1;
$scope.b = 2;
}])
})(window.angular);
This Pen doesn't use any external CSS resources.