<!DOCTYPE html>
<html>
<head>
<title>Wikitechy AngularJS Tutorials</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"> </script>
</head>
<body>
<div ng-app="myApp" ng-controller="includeCtrl">
<h3>Includes HTML In AngularJS</h3>
<div ng-include="'welcome.html'"></div>
<h3>Includes Angular Code In AngularJS</h3>
<div ng-include="'technology.html'"></div>
</div>
<script>
var app = angular.module("myApp", []);
app.controller("includeCtrl", function($scope) {
$scope.technology = [ "HTML", "AngularJS", "CSS", "C",
"JAVA", "PHP", ];
});
</script>
</body>
</html>