-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelloworld.html
More file actions
43 lines (32 loc) · 849 Bytes
/
helloworld.html
File metadata and controls
43 lines (32 loc) · 849 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="bower_components/angularjs/angular-csp.css"/>
<script src="bower_components/angularjs/angular.js"></script>
<script src="app/js/app-config.js"></script>
<style>
.red {
background-color: red;
height: 100px;
width: 100px;
}
.blue {
background-color: blue;
height: 100px;
width: 100px;
}
</style>
</head>
<body>
<div ng-app="helloWorldApp">
<div ng-controller="HelloWorldController">
<input type="text" ng-model="nome"/><br /><br />
Hello, <span ng-bind="nome"></span>.
<div ng-style="myStyle"></div>
<div ng-class="myClass"></div>
</div>
</div>
</body>
</html>