<!DOCTYPE html>
<html ng-app="myApp">

  <head>
    <script src="https://code.angularjs.org/1.5.0-rc.0/angular.js" data-semver="1.5.0-rc.0" data-require="angular.js@1.4.3"></script>
    <link href="style.css" rel="stylesheet" />
    <script src="script.js"></script>
  </head>

  <body ng-controller="mainController">
    <h1>
      {{message}}, {{customer.firstName}} {{customer.lastName}}!
    </h1>
  </body>

</html>
  var app = angular.module("myApp", []);

  app.controller("mainController", function($scope) {
    $scope.message = "Hello";
    $scope.customer = {
      firstName: "David",
      lastName: "Giard"
    };

  });
/* Styles go here */