It's been a challenging journey trying to self-teach myself Angular.js. Unfortunately, I've hit a frustrating roadblock - the variables just won't display properly on the webpage!
<!DOCTYPE html>
<html ng-app>
<head>
<title>Let's Put This to the Test</title>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
</head>
<body>
Please enter your name in the text box below!
<input type="text" ng-model="sometext" />
<h1>Hello {{ sometext }}</h1>
</body>
</html>
I am desperately seeking assistance from anyone who can point out what mistake I might be making. After hours of frustration and unsuccessful Google searches, I'm at my wit's end.