This is the code in my index.html
Well, I don't see any sort of angular bootstrapping file, so it looks like you don't have a module yet, so the error makes sense. Make an app.js file, and place this in it
var app = angular.module('app',
[
// you'll use this space later, for stuff like ngRoute and ngResource,
]);
then load the file in your html and change to