Skip to content

Commit f2b6d5b

Browse files
committed
Basic Coding with the lectures
1 parent 689dd5b commit f2b6d5b

File tree

3 files changed

+332
-2
lines changed

3 files changed

+332
-2
lines changed

index.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html ng-app="myFirstApp">
33
<head>
44
<meta charser="utf-8">
55
<title>Hello Coursera</title>
6+
<script src="js/angular.min.js"></script>
7+
<script src="js/app.js"></script>
68
</head>
79
<body>
8-
<h1>Hello Coursera!</h1>
10+
<h1>My First AngularJS App</h1>
11+
<div ng-controller="MyFirstController">
12+
<input type="text" ng-model="name">
13+
</div>
914
</body>
1015
</html>

0 commit comments

Comments
 (0)