<title>W3TR</title>
<body ng-app="documentExample">
  <div ng-controller="ExampleController">
  <p>Belge başlığı: <b ng-bind="title"></b></p>
  <p>Pencere belge başlığı: <b ng-bind="windowTitle"></b></p>
</div>
</body>
angular.module('documentExample', [])
.controller('ExampleController', ['$scope', '$document', function($scope, $document) {
  $scope.title = $document[0].title;
  $scope.windowTitle = angular.element(window.document)[0].title;
}]);

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. //cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.2/angular.min.js