-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 792 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (24 loc) · 792 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
<!DOCTYPE html>
<html lang="en" ng-app="NameCalculator">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="angular.min.js"></script>
<script src="app.js"></script>
<title>Name Calculator</title>
</head>
<body>
<h1>Name Calculator</h1>
<!-- Everything contained in this div is controlled by the nameCalculatorController-->
<div ng-controller="nameCalculatorController">
<div>
Your Name:
<input type="text" ng-model="name" ng-keyup="displayNumeric();"></input>
</div>
<div>
Total value of person's name is: {{totalValue}}
</div>
</div>
</body>
</html>