Could you please review This Plunker Demo and provide insights on why it is not functioning correctly?
Below is the code snippet I am using:
<!DOCTYPE html>
<html ng-app>
<head>
<script data-require="<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="a7c6c9c0d2cbc6d589cdd4e795899789978ac6cbd7cfc6899496">[email protected]</a>" data-semver="2.0.0-alpha.31" src="https://code.angularjs.org/2.0.0-alpha.31/angular.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<div ng-controller="FirstController">
<h1>{{msg}}</h1>
</div>
</body>
</html>
The content of script.js
is as follows:
var FirstController = function($scope){
$scope.msg = "This Must Work!";
};