<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<div ng-app="firstApp" ng-controller="firstDiv">
<p ng-bind="website"></p>
<p ng-bind="category"></p>
</div>
<script>
var app = angular.module('firstApp', []);
app.controller('firstDiv', function($scope) {
$scope.website = "http://www.collectivesolver.com";
$scope.category = "Programming & Software Q&A";
});
</script>
</body>
</html>
<!--
run:
http://www.collectivesolver.com
Programming & Software Q&A
-->