<body ng-app='helloworldApp'>
<div ng-controller='MainCtrl'>
{{text}}
</div>
</body>
var mainMod = angular.module('helloworldApp', []);
mainMod.controller('MainCtrl', function ($scope) {
$scope.text = 'HelloWorld!!';
});
This Pen doesn't use any external CSS resources.