<!DOCTYPE html>
<html lang="en" ng-app>
<head>
<title>TheNetNinja Angular Playlist</title>
<link href="content/css/styles.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.10/angular.min.js"></script>
<script src="app/lib/angular.min.js"></script>
</head>
<body>
<input type="text" ng-model="favMeat" placeholder="enter your fav meat" />
<p>Your fav meat is: {{ favMeat }} </p>
</body>
</html>
The text box and the words below it are showing up, but the 'favMeat' value is not showing up when I type in the text box. I'm also running this on a local server built into the atom text editor. I would guess it has something to do with my src files? If I comment out the second src it still doesn't work.