forked from carloscarcamo/ng-book-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimpleModel.html
More file actions
26 lines (22 loc) · 773 Bytes
/
simpleModel.html
File metadata and controls
26 lines (22 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Simple model | ng-book</title>
<meta name="description" content="simple model, hello world, ng-book, angular.js">
<meta name="author" content="carlos carcamo">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<script src="bower_components/angular/angular.min.js"></script>
</head>
<body>
<div ng-app="myApp">
<div ng-controller="MyController">
<h1>Hello {{name}}</h1>
</div>
</div>
<script type="text/javascript" src="js/SimpleModel.js"></script>
</body>
</html>